Skip to content

Commit c9638b7

Browse files
authored
Corrected to < 80 chars/line
1 parent 1c18e32 commit c9638b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyfakefs/fake_filesystem_unittest.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,8 @@ def cleanup(self):
668668
reloaded_module_names = [module.__name__
669669
for module in self._patcher.modules_to_reload]
670670
# Dereference all modules loaded during the test so they will reload on
671-
# next use, ensuring that no faked modules are referenced after the test
671+
# the next use, ensuring that no faked modules are referenced after the
672+
# test.
672673
for name in self._loaded_module_names:
673674
if name in sys.modules and name not in reloaded_module_names:
674675
del sys.modules[name]

0 commit comments

Comments
 (0)