Skip to content

Commit 02fbf61

Browse files
committed
fixing flake8
1 parent d6c4a9e commit 02fbf61

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/test_v1.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ def test_categorical_dtypes():
2323
from dfschema.core.core import DfSchema
2424
import json
2525
from pathlib import Path
26-
path = Path(__name__).parent / 'tests/test_schemas/v1/good/property_benchmarks.json'
26+
27+
path = Path(__name__).parent / "tests/test_schemas/v1/good/property_benchmarks.json"
2728
schema = json.loads(path.read_text())
28-
29+
2930
S = DfSchema.from_dict(schema)
30-
catcol = [el for el in S.columns if el.name == 'BOROUGH_ID'][0]
31+
catcol = [el for el in S.columns if el.name == "BOROUGH_ID"][0]
3132
assert catcol.categorical.value_set == frozenset((100, 200, 300, 400, 500))

0 commit comments

Comments
 (0)