We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 932cc0e commit 7016893Copy full SHA for 7016893
1 file changed
splitgraph/core/image.py
@@ -70,7 +70,7 @@ def __eq__(self, other: object) -> bool:
70
return NotImplemented
71
return self.image_hash == other.image_hash and self.repository == other.repository
72
73
- def to_schema(self):
+ def to_schema(self) -> str:
74
"""Schema reference for the given image."""
75
return self.repository.to_schema() + ":" + self.image_hash
76
0 commit comments