Skip to content

Commit

Permalink
Fix circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Jan 3, 2021
1 parent 7f44cd7 commit 96b7583
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pymysql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

from .constants import FIELD_TYPE
from .converters import escape_dict, escape_sequence, escape_string
from . import connections
from .err import (
Warning,
Error,
Expand Down Expand Up @@ -58,6 +57,8 @@
apilevel = "2.0"
paramstyle = "pyformat"

from . import connections # noqa: E402


class DBAPISet(frozenset):
def __ne__(self, other):
Expand Down

0 comments on commit 96b7583

Please sign in to comment.