From 57ee5149d219e8ef62780cdfc25eeffc79f31c6f Mon Sep 17 00:00:00 2001
From: uvok
Date: Sun, 19 Jan 2025 18:35:31 +0100
Subject: Rename class

---
 hello-fusepy.py | 4 ++--
 1 file 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,
-- 
cgit v1.2.3