We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5cf01a commit a4fa6fbCopy full SHA for a4fa6fb
1 file changed
cstruct/field.py
@@ -220,3 +220,6 @@ def align_filed_offset(self) -> None:
220
def copy(self) -> "FieldType":
221
"Return a shallow copy of this FieldType"
222
return copy.copy(self)
223
+
224
+ def __repr__(self) -> str: # pragma: no cover
225
+ return repr(self.__dict__)
0 commit comments