Skip to content

Commit c29a917

Browse files
committed
Reformat code of fs.test module with black
1 parent 13f1c29 commit c29a917

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fs/test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1752,7 +1752,9 @@ def test_move_dir_same_fs(self):
17521752
self.assert_text("/foo2/bar/baz/test.txt", "Goodbye, World")
17531753

17541754
self.assertEqual(sorted(self.fs.listdir("/")), ["egg", "foo2", "top.txt"])
1755-
self.assertEqual(sorted(x.name for x in self.fs.scandir("/")), ["egg", "foo2", "top.txt"])
1755+
self.assertEqual(
1756+
sorted(x.name for x in self.fs.scandir("/")), ["egg", "foo2", "top.txt"]
1757+
)
17561758

17571759
def _test_move_dir_write(self, protocol):
17581760
# Test moving to this filesystem from another.

0 commit comments

Comments
 (0)