Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
nllong committed Aug 28, 2019
1 parent ed8a617 commit c7f1968
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions seed/data_importer/tests/test_equivalence_partitioner.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,14 @@ def __init__(self, *args, **kwds):
class PropertyState(EZState):

def __init__(self, **kwds):
super().__init__("ubid", "pm_property_id", "custom_id_1",
"normalized_address", **kwds)
super().__init__("ubid", "pm_property_id", "custom_id_1", "normalized_address", **kwds
)


class TaxLotState(EZState):

def __init__(self, **kwds):
super().__init__("jurisdiction_tax_lot_id", "custom_id_1",
"normalized_address", **kwds)
super().__init__("jurisdiction_tax_lot_id", "custom_id_1", "normalized_address", **kwds)


class TestEquivalenceClassGenerator(DataMappingBaseTestCase):
Expand Down

0 comments on commit c7f1968

Please sign in to comment.