diff options
-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: |