aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Ionite <[email protected]>2022-11-28 07:45:32 +0800
committerGravatar GitHub <[email protected]>2022-11-28 07:45:32 +0800
commitc75ca1c9f6acae57fce73cddda6757c046fd60f1 (patch)
tree1025ffe2093830d43cbe12666b8dbc292d26d2e1
parentUpdate snekbox/memfs.py (diff)
Docstring fixes
Co-authored-by: Mark <[email protected]>
-rw-r--r--snekbox/memfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/memfs.py b/snekbox/memfs.py
index c9c5a69..fcb4a32 100644
--- a/snekbox/memfs.py
+++ b/snekbox/memfs.py
@@ -137,7 +137,7 @@ class MemFS:
yield FileAttachment.from_path(file, relative_to=self.output)
def cleanup(self) -> None:
- """Unmounts tmpfs."""
+ """Unmount the tmpfs."""
if self._path is None:
return
unmount(self.path)