We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca11cce commit cd53826Copy full SHA for cd53826
components/renku_data_services/utils/sqlalchemy.py
@@ -22,4 +22,4 @@ def process_result_value(self, value: str | None, dialect: Dialect) -> ULID | No
22
"""Transform string from database into ULID."""
23
if value is None:
24
return None
25
- return cast(ULID, ULID.from_str(value))
+ return cast(ULID, ULID.from_str(value)) # cast because mypy doesn't understand ULID type annotations
0 commit comments