Skip to content

Commit

Permalink
format class variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ajshedivy committed Sep 9, 2024
1 parent 53b51ed commit c031ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapepire_python/core/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class Cursor(pep249.CursorConnectionMixin, pep249.IterableCursorMixin, pep249.Tr

def __init__(self, connection: "Connection", job: SQLJob) -> None:
super().__init__()
self.job = job
self._connection = weakref.proxy(connection)
self.job = job
self.query: Query = None
self.query_q = deque(maxlen=20)
self.__closed = False
Expand Down

0 comments on commit c031ea3

Please sign in to comment.