Skip to content

Commit

Permalink
Merge pull request #159 from a-detiste/develop
Browse files Browse the repository at this point in the history
remove Python2 crumbs
  • Loading branch information
metaodi authored Mar 13, 2024
2 parents be9549d + 2ac9526 commit 9fa51d1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
flake8
mock
virtualenv
xmltodict
pytest
Expand Down
6 changes: 1 addition & 5 deletions tests/notes_test.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
from . import osmapi_test
from datetime import datetime
import osmapi

try:
import urlparse
except ImportError:
from urllib import parse as urlparse
from urllib import parse as urlparse


class TestOsmApiNotes(osmapi_test.TestOsmApi):
Expand Down
3 changes: 1 addition & 2 deletions tests/way_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import unicode_literals, absolute_import
from . import osmapi_test
import osmapi
import mock
from unittest import mock
import datetime


Expand Down

0 comments on commit 9fa51d1

Please sign in to comment.