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 b4eb86e commit 67d9ca1Copy full SHA for 67d9ca1
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "arraytex"
3
-version = "0.0.6"
+version = "0.0.7"
4
description = "ArrayTeX"
5
authors = ["Dom Batten <[email protected]>"]
6
license = "MIT"
src/arraytex/api.py
@@ -141,12 +141,6 @@ def to_tabular(
141
if len(col_names) == n_cols:
142
col_names.insert(0, "Index")
143
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
-
150
for idx, line in enumerate(lines):
151
lines[idx] = f"{col_index[idx]} & " + line.strip()
152
0 commit comments