Skip to content

Commit

Permalink
Fixes in last update
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarbette committed Sep 26, 2024
1 parent 0b38531 commit 1825274
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Empty file added npf/types/notebook/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion npf/types/notebook/notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def has_tag(cell, tag: str) -> bool:
return tag in tags or "all" in tags


def get_name(var, var_names: dict[str, str]):
def get_name(var, var_names):
"""Returns the name associated with a variable or a list of variables."""
if isinstance(var, list):
return [get_name(v, var_names) for v in var]
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
'seaborn',
'statsmodels',
'scikit-optimize',
'colorama'
'colorama',
'scikit-optimize'
]

setuptools.setup(
Expand Down

0 comments on commit 1825274

Please sign in to comment.