Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
	modified:   src/cassandra_async_session.py
  • Loading branch information
vicky5124 committed Nov 15, 2023
1 parent 4bc2440 commit 3bfbfa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cassandra_async_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from cassandra.query import PreparedStatement


class AsyncioSession(Session):
class AsyncioSession(Session): # type: ignore
def __init__(self, session: Session):
self.__dict__.update(session.__dict__)
self._asyncio_loop = asyncio.get_event_loop()
Expand Down

0 comments on commit 3bfbfa0

Please sign in to comment.