Skip to content

Commit cd53826

Browse files
committed
address comments
1 parent ca11cce commit cd53826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/renku_data_services/utils/sqlalchemy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ def process_result_value(self, value: str | None, dialect: Dialect) -> ULID | No
2222
"""Transform string from database into ULID."""
2323
if value is None:
2424
return None
25-
return cast(ULID, ULID.from_str(value))
25+
return cast(ULID, ULID.from_str(value)) # cast because mypy doesn't understand ULID type annotations

0 commit comments

Comments
 (0)