diff --git a/import2ledger/config.py b/import2ledger/config.py index a961b6a692b1bc120c68f74aa2e93eb47e941b06..acc924dbdd81e0b2d5f3f22f3df5ad0e5889e4a1 100644 --- a/import2ledger/config.py +++ b/import2ledger/config.py @@ -74,20 +74,6 @@ class Configuration: '--output-path', '-O', metavar='PATH', help="Path of file to append entries to, or '-' for stdout (default).", ) - out_args.add_argument( - '--signed-currency', '--sign', metavar='CODE', - action='append', dest='signed_currencies', - help="Currency code to use currency sign for in Ledger entry amounts. " - "Can be specified multiple times.", - ) - out_args.add_argument( - '--signed-currency-format', '--sign-format', '-S', metavar='FORMAT', - help="Unicode number pattern to use for signed currencies in Ledger entry amounts", - ) - out_args.add_argument( - '--unsigned-currency-format', '--unsign-format', '-U', metavar='FORMAT', - help="Unicode number pattern to use for unsigned currencies in Ledger entry amounts", - ) return parser @@ -97,10 +83,6 @@ class Configuration: defaults={ 'loglevel': 'WARNING', 'output_path': '-', - 'signed_currencies': ','.join(babel.numbers.get_territory_currencies( - self.LOCALE.territory, start_date=self.TODAY)), - 'signed_currency_format': '¤#,##0.###;¤-#,##0.###', - 'unsigned_currency_format': '#,##0.### ¤¤', }) def _read_conffiles(self):