diff options
author | uvok | 2025-01-19 18:35:31 +0100 |
---|---|---|
committer | uvok | 2025-01-19 18:35:31 +0100 |
commit | 57ee5149d219e8ef62780cdfc25eeffc79f31c6f (patch) | |
tree | f0197616ff484278a55090aa723b6a87cc9f741d | |
parent | a67f49812cd4de5fce5752eee76152924abd0197 (diff) |
Rename class
-rw-r--r-- | hello-fusepy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hello-fusepy.py b/hello-fusepy.py index 7b8cfb5..8da35a9 100644 --- a/hello-fusepy.py +++ b/hello-fusepy.py @@ -100,7 +100,7 @@ class MastodonStatusProvider(StatusProvider): ] -class HelloWorld(Operations, LoggingMixIn): +class StatusFileSystem(Operations, LoggingMixIn): def __init__(self, api: APIChoice, server: str, user: str): self.statuses: list[Status] = [] self.fd = 0 @@ -190,7 +190,7 @@ def parse_arguments(): def main(args): try: FUSE( - HelloWorld(args.api_choice, args.server, args.username), + StatusFileSystem(args.api_choice, args.server, args.username), args.mountpoint, nothreads=True, foreground=True, |