From 88c147fc81904cf2b7cdd1d0372cbd839138f18f Mon Sep 17 00:00:00 2001 From: Nick Crews Date: Thu, 16 Oct 2025 15:56:11 -0600 Subject: [PATCH] fix: remove bogus leading ' from Struct repr --- ibis/expr/datatypes/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibis/expr/datatypes/core.py b/ibis/expr/datatypes/core.py index 6bce0cd872b8..4264b00168f6 100644 --- a/ibis/expr/datatypes/core.py +++ b/ibis/expr/datatypes/core.py @@ -988,7 +988,7 @@ def __getitem__(self, key: str) -> DataType: def __repr__(self) -> str: name = self.__class__.__name__ - return f"'{name}({list(self.items())}, nullable={self.nullable})" + return f"{name}({list(self.items())}, nullable={self.nullable})" @property def _pretty_piece(self) -> str: