diff options
| author | 2022-11-27 21:26:39 +0800 | |
|---|---|---|
| committer | 2022-11-27 21:26:39 +0800 | |
| commit | 750730a88cec092913183474c378bb562cba9d01 (patch) | |
| tree | f5180dea30551207b12cc905be40ed537ae88ed1 | |
| parent | Add tests for unmount flags (diff) | |
Update snekbox/memfs.py
Co-authored-by: Mark <[email protected]>
| -rw-r--r-- | snekbox/memfs.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/snekbox/memfs.py b/snekbox/memfs.py index fb62ce9..c9c5a69 100644 --- a/snekbox/memfs.py +++ b/snekbox/memfs.py @@ -81,7 +81,7 @@ class MemFS:          return self.home / "output"      def __enter__(self) -> MemFS: -        """Mounts a new tempfs, returns self.""" +        """Mount a new tempfs and return self."""          for _ in range(10):              name = str(uuid4())              try: | 
