Skip to content

Commit 7192f31

Browse files
committed
Tidying up formatting.
1 parent e5f04d4 commit 7192f31

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/test_typing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def test_check_membership_false(obj, type_):
6262

6363

6464
class MyPathLike(os.PathLike):
65+
6566
def __init__(self, directory, filename):
6667
self.directory = str(directory)
6768
self.filename = str(filename)
@@ -100,8 +101,7 @@ def test_pathlike_true(obj):
100101

101102

102103
@pytest.mark.parametrize(
103-
"obj",
104-
[
104+
"obj", [
105105
1234,
106106
12.34,
107107
[1, 2, 3, 4, 5],

tests/test_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ def test_enquote_value(obj, expects):
377377
# with pytest.raises(expects):
378378
# utils.enquote_value(obj)
379379

380+
380381
def test_cmp():
381382
assert isinstance(utils.cmp(5, 20), int)
382383
assert utils.cmp(5, 20) < 0

0 commit comments

Comments
 (0)