Skip to content

Commit 1c0b48e

Browse files
committed
black
1 parent 2a81d2a commit 1c0b48e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/python/plotly/_plotly_utils/tests/validators/test_angle_validator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def test_aok_base64_array(validator_aok):
5959
assert coerce_val["bdata"] == "AQID"
6060
assert coerce_val["dtype"] == "i1"
6161

62+
6263
# ### Test coercion above 180 ###
6364
@pytest.mark.parametrize(
6465
"val,expected",

packages/python/plotly/_plotly_utils/tests/validators/test_any_validator.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ def test_acceptance_array(val, validator_aok):
5151
assert coerce_val == val
5252
assert validator_aok.present(coerce_val) == val
5353

54+
5455
def test_base64_array(validator_aok):
5556
val = b64(np.array([1, 2, 3], dtype="int64"))
5657
coerce_val = validator_aok.validate_coerce(val)
57-
assert coerce_val['bdata'] == "AQID"
58-
assert coerce_val['dtype'] == "i1"
58+
assert coerce_val["bdata"] == "AQID"
59+
assert coerce_val["dtype"] == "i1"

0 commit comments

Comments
 (0)