Skip to content
This repository was archived by the owner on Jun 19, 2023. It is now read-only.

Commit 8075376

Browse files
authored
Change all instances of BarNotes to MenuNote
1 parent fb649a5 commit 8075376

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/note.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
class Note:
66
def get_note():
7-
return open(f"/users/{user_name}/Library/Application Support/BarNotes/note.txt").read()
7+
return open(f"/users/{user_name}/Library/Application Support/MenuNote/note.txt").read()
88

99
def set_note(note):
1010
if note == "":
11-
note = "Bar Notes"
11+
note = "Menu Note"
1212
note = note[:100]
13-
with open(f"/users/{user_name}/Library/Application Support/BarNotes/note.txt", "w") as f:
13+
with open(f"/users/{user_name}/Library/Application Support/MenuNote/note.txt", "w") as f:
1414
f.write(note)

0 commit comments

Comments
 (0)