Skip to content

Commit 667016c

Browse files
authored
Update OSState class to change user name and add file
1 parent cc4f0e2 commit 667016c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pythonos/os.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class OSState:
22
def __init__(self):
3-
self.user_name = "Utente"
3+
self.user_name = "Guest"
44
self.theme = "dark"
55
self.lock_code = "1234"
66
self.notes = ""
@@ -9,6 +9,7 @@ def __init__(self):
99
"immagine.png",
1010
"appunti.md",
1111
"config.sys",
12+
"pyos.sys"
1213
]
1314

1415
def run_command(self, command: str) -> str:

0 commit comments

Comments
 (0)