Skip to content

Commit 6aa127d

Browse files
committed
Fix flake8 warnings
1 parent a0b380f commit 6aa127d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

investing_algorithm_framework/domain/services/market_data_sources.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _data_source_exists(self, file_path):
6868
return False
6969

7070
return True
71-
except Exception as e:
71+
except Exception:
7272
return False
7373

7474
def write_data_to_file_path(self, data_file, data):

investing_algorithm_framework/infrastructure/models/market_data_sources/ccxt.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import logging
2-
import logging
32
import os
43
from datetime import timedelta
54

0 commit comments

Comments
 (0)