Skip to content

Commit d7083c2

Browse files
NickCrewscpcloud
authored andcommitted
fix: remove bogus leading ' from Struct repr
1 parent 9ab2d63 commit d7083c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibis/expr/datatypes/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ def __getitem__(self, key: str) -> DataType:
988988

989989
def __repr__(self) -> str:
990990
name = self.__class__.__name__
991-
return f"'{name}({list(self.items())}, nullable={self.nullable})"
991+
return f"{name}({list(self.items())}, nullable={self.nullable})"
992992

993993
@property
994994
def _pretty_piece(self) -> str:

0 commit comments

Comments
 (0)