Skip to content

Commit

Permalink
Fix checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner authored and renovate[bot] committed Sep 3, 2024
1 parent 54093f8 commit 9f62ae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commons/c2cgeoportal_commons/models/sqlalchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def process_literal_param(self, value: Optional[Any], dialect: Any) -> str:
return json.dumps(value)


class TsVector(UserDefinedType): # type: ignore
class TsVector(UserDefinedType[dict[str, str]]): # pylint: disable=abstract-method
"""A custom type for PostgreSQL's tsvector type."""

cache_ok = True
Expand Down

0 comments on commit 9f62ae6

Please sign in to comment.