Skip to content

Commit 7adf281

Browse files
Update __init__.py
1 parent 6ec4d29 commit 7adf281

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schemascii/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def render(filename: str, text: str = None, **options) -> str:
3535
# default options
3636
options = default_options | options
3737
for oname, otypefun in option_types.items():
38-
options[oname] = otypefun(option[oname])
38+
options[oname] = otypefun(options[oname])
3939
# get everything
4040
grid = Grid(filename, text)
4141
components, bom_data = find_all(grid)

0 commit comments

Comments
 (0)