diff options
Diffstat (limited to 'python/collateral/wells.py')
| -rw-r--r-- | python/collateral/wells.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/collateral/wells.py b/python/collateral/wells.py index d31163c3..08760d60 100644 --- a/python/collateral/wells.py +++ b/python/collateral/wells.py @@ -4,12 +4,12 @@ from .common import compare_notionals, STRATEGY_CASH_MAPPING from sqlalchemy.exc import IntegrityError -def download_files(*args): +def download_files(*args, **kwargs): sftp = SftpClient2.from_creds("wells") sftp.download_files("/RECEIVE/339425_DATO2", DAILY_DIR / "Wells_reports") -def collateral(d, positions, engine): +def collateral(d, positions, *, engine, **kwargs): account = "A5882186" file_name = ( DAILY_DIR |
