Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
willforde committed Oct 15, 2018
1 parent faf4369 commit 19ff740
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions urlquick.py
Expand Up @@ -52,6 +52,7 @@
# Standard library imports
from codecs import open as _open, getencoder
from base64 import b64encode, b64decode
from collections import defaultdict
from datetime import datetime
import json as _json
import logging
Expand All @@ -74,7 +75,7 @@
# noinspection PyUnresolvedReferences, PyCompatibility
from http.cookies import SimpleCookie
# noinspection PyUnresolvedReferences, PyCompatibility
from collections.abc import MutableMapping, defaultdict
from collections.abc import MutableMapping

# Under kodi this constant is set to the addon data directory
# code for whitch is at the bottom of this file
Expand All @@ -92,7 +93,7 @@
# noinspection PyUnresolvedReferences, PyCompatibility
from Cookie import SimpleCookie
# noinspection PyUnresolvedReferences, PyCompatibility
from collections import MutableMapping, defaultdict
from collections import MutableMapping

# Under kodi this constant is set to the addon data directory
# code for whitch is at the bottom of this file
Expand Down

0 comments on commit 19ff740

Please sign in to comment.