1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

vcr/unittest: Apply 2to3

This commit is contained in:
Sebastian Pipping
2023-06-02 16:40:01 +02:00
parent 46726a9a61
commit 1070d417b3
2 changed files with 1 additions and 9 deletions

View File

@@ -1,5 +1,3 @@
from __future__ import absolute_import, unicode_literals
import inspect
import logging
import os

View File

@@ -1,15 +1,9 @@
from __future__ import absolute_import, unicode_literals
import os
from unittest.mock import MagicMock as Mock
from unittest import defaultTestLoader, TextTestRunner
from urllib.request import urlopen
from ..testcase import VCRTestCase
try:
from urllib2 import urlopen
except ImportError:
from urllib.request import urlopen
def test_defaults():