Skip to content

Commit

Permalink
Remove extra type ignore comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner authored and renovate[bot] committed Nov 4, 2024
1 parent df9bea2 commit 9de2e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c2cwsgiutils/sqlalchemylogger/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def create_db(self) -> None:
with self.engine.begin() as connection:
if not self.engine.dialect.has_schema(connection, self.Log.__table_args__["schema"]):
connection.execute(
sqlalchemy.schema.CreateSchema(self.Log.__table_args__["schema"]), # type: ignore
sqlalchemy.schema.CreateSchema(self.Log.__table_args__["schema"]),
)
Base.metadata.create_all(self.engine)

Expand Down

0 comments on commit 9de2e4b

Please sign in to comment.