We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2509d7d commit d3eae59Copy full SHA for d3eae59
CHANGELOG.md
@@ -4,6 +4,13 @@ Write the date in place of the "Unreleased" in the case a new version is release
4
# Changelog
5
6
7
+## Unreleased
8
+
9
+### Fixed
10
11
+- Column names in `TableStructure` are explicitly converted to strings.
12
13
14
## v0.1.6 (2025-09-29)
15
16
### Fixed
tiled/structures/table.py
@@ -24,6 +24,7 @@ class TableStructure:
24
resizable: Union[bool, Tuple[bool, ...]] = False
25
26
def __post_init__(self):
27
+ self.columns = list(map(str, self.columns)) # Ensure all column names are str
28
for column in self.columns:
29
if column.startswith("_"):
30
raise ValueError(
0 commit comments