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