Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dbatten5 committed Apr 11, 2023
1 parent b4eb86e commit 67d9ca1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "arraytex"
version = "0.0.6"
version = "0.0.7"
description = "ArrayTeX"
authors = ["Dom Batten <[email protected]>"]
license = "MIT"
Expand Down
6 changes: 0 additions & 6 deletions src/arraytex/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,6 @@ def to_tabular(
if len(col_names) == n_cols:
col_names.insert(0, "Index")

if len(col_align) != len(col_names):
raise DimensionMismatchError(
f"Number of `col_align` items ({len(col_align)}) "
+ f"doesn't match number of cols ({len(col_names)})"
)

for idx, line in enumerate(lines):
lines[idx] = f"{col_index[idx]} & " + line.strip()

Expand Down

0 comments on commit 67d9ca1

Please sign in to comment.