Skip to content

Commit

Permalink
Fix mypy lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
seandstewart committed Aug 1, 2020
1 parent d79ba04 commit dfcc0a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iambic/render/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def iter_grid_tab(table: tablib.Dataset) -> Iterable[str]:
yield ""


def iter_tabs(table: tablib.Dataset, *, __headers=frozenset((c.value for c in Column))):
def iter_tabs(table: tablib.Dataset, *, __headers=frozenset(Column)):
yield from iter_character_tab(table)
for header in (h for h in table.headers if h not in __headers):
yield from iter_scene_tab(table, header)
Expand Down

0 comments on commit dfcc0a5

Please sign in to comment.