Skip to content

Commit 67d9ca1

Browse files
committed
bump version
1 parent b4eb86e commit 67d9ca1

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "arraytex"
3-
version = "0.0.6"
3+
version = "0.0.7"
44
description = "ArrayTeX"
55
authors = ["Dom Batten <[email protected]>"]
66
license = "MIT"

src/arraytex/api.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,6 @@ def to_tabular(
141141
if len(col_names) == n_cols:
142142
col_names.insert(0, "Index")
143143

144-
if len(col_align) != len(col_names):
145-
raise DimensionMismatchError(
146-
f"Number of `col_align` items ({len(col_align)}) "
147-
+ f"doesn't match number of cols ({len(col_names)})"
148-
)
149-
150144
for idx, line in enumerate(lines):
151145
lines[idx] = f"{col_index[idx]} & " + line.strip()
152146

0 commit comments

Comments
 (0)