brightfunds: Remove unused code.

This commit is contained in:
Brett Smith 2020-11-09 17:06:32 -05:00
parent 6dfd89e5ec
commit deee5bad57
2 changed files with 1 additions and 4 deletions

View file

@ -1,5 +1,3 @@
import collections
from . import _csv from . import _csv
from . import _xls from . import _xls
from .. import strparse from .. import strparse
@ -36,7 +34,6 @@ class _BrightFundsMixin:
entry_key: self._get_value(row[row_key]) entry_key: self._get_value(row[row_key])
for row_key, entry_key in self.FIELDS_TO_COPY.items() for row_key, entry_key in self.FIELDS_TO_COPY.items()
} }
print(entry_data, row['Amount'])
names = [] names = []
for key in self.NAME_KEYS: for key in self.NAME_KEYS:
name = entry_data[key].strip() name = entry_data[key].strip()

View file

@ -30,7 +30,7 @@ REQUIREMENTS['tests_require'] = [
setup( setup(
name='import2ledger', name='import2ledger',
description="Import different sources of financial data to Ledger", description="Import different sources of financial data to Ledger",
version='1.3.0', version='1.3.1',
author='Brett Smith', author='Brett Smith',
author_email='brettcsmith@brettcsmith.org', author_email='brettcsmith@brettcsmith.org',
license='GNU AGPLv3+', license='GNU AGPLv3+',