We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32d8084 commit e24b3ecCopy full SHA for e24b3ec
1 file changed
activity_browser/bwutils/superstructure/excel.py
@@ -52,7 +52,7 @@ def get_header_index(document_path: Union[str, Path], import_sheet: int):
52
53
def valid_cols(name: str) -> bool:
54
"""Callable which evaluates if a specific column should be used."""
55
- return False if name.startswith("#") else True
+ return False if str(name).startswith("#") else True
56
57
def import_from_excel(document_path: Union[str, Path], import_sheet: int = 1) -> pd.DataFrame:
58
"""Import all of the exchanges and their scenario amounts from a given
0 commit comments