Skip to content

Commit

Permalink
Maybe supress warning in 3.7 code
Browse files Browse the repository at this point in the history
  • Loading branch information
IanCa committed Oct 12, 2023
1 parent 39c7487 commit a762ba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hed/models/base_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def _indexed_dict_from_onsets(onsets):

@staticmethod
def _filter_by_index_list(original_series, indexed_dict):
new_series = pd.Series(["n/a"] * len(original_series))
new_series = pd.Series(["n/a"] * len(original_series), dtype=str)

for onset, indices in indexed_dict.items():
if indices:
Expand Down

0 comments on commit a762ba7

Please sign in to comment.