Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
thf24 committed Sep 13, 2021
1 parent 3b0e5be commit 6f80df6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simfin/hubs.py
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ def fin_signals(self, variant='daily', func=None):
insurance = False
if self._dataset_extension == "-banks":
banks = True
elif self._dataset_extension == "insurance":
elif self._dataset_extension == "-insurance":
insurance = True

# Calculate the signals, or load the DataFrame from the disk-cache.
Expand Down Expand Up @@ -723,7 +723,7 @@ def val_signals(self, variant='daily', func=None,
insurance = False
if self._dataset_extension == "-banks":
banks = True
elif self._dataset_extension == "insurance":
elif self._dataset_extension == "-insurance":
insurance = True

# Calculate the signals, or load the DataFrame from the disk-cache.
Expand Down

0 comments on commit 6f80df6

Please sign in to comment.