Skip to content

Commit 1b893b4

Browse files
CI: Bump black (#19)
1 parent 6e1d085 commit 1b893b4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

data_validation_framework/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def build_subtree(node, deps, known_nodes=None):
7878
if t not in known_nodes:
7979
subtree[t] = {}
8080
known_nodes.add(t)
81-
for t in subtree:
81+
for t in subtree.keys(): # pylint: disable=consider-iterating-dictionary
8282
subtree[t] = build_subtree(t, deps, known_nodes)
8383
return subtree
8484

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,13 @@ commands =
4141
[testenv:lint]
4242
basepython = python3.8
4343
deps =
44-
black==21.4b2
44+
black
4545
codespell
4646
isort
4747
pycodestyle
4848
pydocstyle
4949
pylint
50+
toml
5051
commands =
5152
codespell {[base]files}
5253
pycodestyle {[base]files}
@@ -59,7 +60,7 @@ commands =
5960
basepython = python3.8
6061
skip_install = true
6162
deps =
62-
black==21.4b2
63+
black
6364
codespell
6465
isort
6566
commands =

0 commit comments

Comments
 (0)