Skip to content

Commit a0e8c9e

Browse files
author
Joel Collins
committed
Formatting
1 parent 29ec8d4 commit a0e8c9e

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/test_core_utilities.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,17 +92,13 @@ def as_str(v):
9292

9393

9494
def test_get_by_path():
95-
d1 = {
96-
"a": {"b": "String"},
97-
}
95+
d1 = {"a": {"b": "String"}}
9896

9997
assert utilities.get_by_path(d1, ("a", "b")) == "String"
10098

10199

102100
def test_set_by_path():
103-
d1 = {
104-
"a": {"b": "String"},
105-
}
101+
d1 = {"a": {"b": "String"}}
106102

107103
utilities.set_by_path(d1, ("a", "b"), "Set")
108104

0 commit comments

Comments
 (0)