Skip to content

Commit 314c461

Browse files
Apply style fixes
1 parent c7fe174 commit 314c461

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/diffusers/utils/testing_utils.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1388,15 +1388,13 @@ def __repr__(self):
13881388

13891389

13901390
class TemporaryDirectory:
1391-
"""Create and return a temporary directory. This has the same
1392-
behavior as mkdtemp but can be used as a context manager. For
1393-
example:
1391+
"""Create and return a temporary directory. This has the same
1392+
behavior as mkdtemp but can be used as a context manager. For example:
13941393
13951394
with TemporaryDirectory() as tmpdir:
13961395
...
13971396
1398-
Upon exiting the context, the directory and everything contained
1399-
in it are removed.
1397+
Upon exiting the context, the directory and everything contained in it are removed.
14001398
"""
14011399

14021400
def __init__(self, suffix=None, prefix=None, dir=None, ignore_cleanup_errors=False):

0 commit comments

Comments
 (0)