Skip to content

Commit f11c9bb

Browse files
committed
linting
1 parent 4913b71 commit f11c9bb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

upath/tests/cases.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,22 +62,22 @@ def test_is_file(self):
6262
assert not self.path.is_file()
6363

6464
def test_is_mount(self):
65-
assert self.path.is_mount() == False
65+
assert self.path.is_mount() is False
6666

6767
def test_is_symlink(self):
68-
assert self.path.is_symlink() == False
68+
assert self.path.is_symlink() is False
6969

7070
def test_is_socket(self):
71-
assert self.path.is_socket() == False
71+
assert self.path.is_socket() is False
7272

7373
def test_is_fifo(self):
74-
assert self.path.is_fifo() == False
74+
assert self.path.is_fifo() is False
7575

7676
def test_is_block_device(self):
77-
assert self.path.is_block_device() == False
77+
assert self.path.is_block_device() is False
7878

7979
def test_is_char_device(self):
80-
assert self.path.is_char_device() == False
80+
assert self.path.is_char_device() is False
8181

8282
def test_iterdir(self, local_testdir):
8383
pl_path = Path(local_testdir)

0 commit comments

Comments
 (0)