Skip to content

Commit 13cd8ba

Browse files
committed
Changes for latest version of black...
1 parent 7823873 commit 13cd8ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/modeci_mdf/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def color_rgb_to_hex(rgb):
135135

136136

137137
def is_number(s):
138-
"""Return :code:`True` if cast to :code:`float` does not throw ValueError, :code:`False` otherwise. """
138+
"""Return :code:`True` if cast to :code:`float` does not throw ValueError, :code:`False` otherwise."""
139139
try:
140140
float(s)
141141
return True

tests/test_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def test_ConditionSet_init_kwargs():
9494

9595

9696
def test_Condition_init_kwargs():
97-
""" Check the working of Condition"""
97+
"""Check the working of Condition"""
9898
C = Condition(type="test_type", n="test_n", dependency="test_dependency")
9999
assert C.type == "test_type"
100100
assert C.args == {"n": "test_n", "dependency": "test_dependency"}

0 commit comments

Comments
 (0)