aboutsummaryrefslogtreecommitdiffstats
path: root/beancount_extras_kris7t/importers/transferwise/__main__.py
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-01-25 01:55:43 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-01-25 01:55:43 +0100
commitd9d649d430d81188b0c1b5b0155935c0e5ac14e2 (patch)
treeb02d1ab8aa43a0f2aeb79e91eeb340b5de27e718 /beancount_extras_kris7t/importers/transferwise/__main__.py
parentMake Pyright happy by importing load_doc directly (diff)
downloadbeancount-extras-kris7t-d9d649d430d81188b0c1b5b0155935c0e5ac14e2.tar.gz
beancount-extras-kris7t-d9d649d430d81188b0c1b5b0155935c0e5ac14e2.tar.zst
beancount-extras-kris7t-d9d649d430d81188b0c1b5b0155935c0e5ac14e2.zip
Fix type errors
Diffstat (limited to 'beancount_extras_kris7t/importers/transferwise/__main__.py')
-rw-r--r--beancount_extras_kris7t/importers/transferwise/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/beancount_extras_kris7t/importers/transferwise/__main__.py b/beancount_extras_kris7t/importers/transferwise/__main__.py
index e25580d..4ac2058 100644
--- a/beancount_extras_kris7t/importers/transferwise/__main__.py
+++ b/beancount_extras_kris7t/importers/transferwise/__main__.py
@@ -4,7 +4,7 @@ Importer for Transferwise API transaction history.
4__copyright__ = 'Copyright (c) 2020 Kristóf Marussy <kristof@marussy.com>' 4__copyright__ = 'Copyright (c) 2020 Kristóf Marussy <kristof@marussy.com>'
5__license__ = 'GNU GPLv2' 5__license__ = 'GNU GPLv2'
6 6
7from importers.transferwise.client import main 7from beancount_extras_kris7t.importers.transferwise.client import main
8 8
9 9
10if __name__ == '__main__': 10if __name__ == '__main__':