Skip to content

Commit

Permalink
Ignore mypy warning in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rz-vastdata committed Dec 11, 2024
1 parent 6af8ec8 commit eebf53a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vastdb/tests/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, conn: sqlite3.Connection, name: str):
self.conn = conn
self.name = name
columns = ", ".join(
f"{f.name} {_MAP_SQLITE_TYPES[f.type]}"
f"{f.name} {_MAP_SQLITE_TYPES[f.type]}" # type: ignore
for f in self.fields
)
cmd = f"CREATE TABLE {self.name} ({columns})"
Expand Down

0 comments on commit eebf53a

Please sign in to comment.