Skip to content

Commit

Permalink
update path
Browse files Browse the repository at this point in the history
  • Loading branch information
rakshith111 committed Jul 14, 2023
1 parent c591ed2 commit fe245c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self):
self.add_field.clicked.connect(self.show_add_dialog)
self.basic_frame_template.hide()
self.clipboard = QApplication.clipboard()
self.data_dir = os.path.join(QStandardPaths.writableLocation(QStandardPaths.StandardLocation.AppLocalDataLocation), 'CopyPasta')
self.data_dir = os.path.join(QStandardPaths.writableLocation(QStandardPaths.StandardLocation.AppLocalDataLocation), 'user_data')
os.makedirs(self.data_dir, exist_ok=True)
self.data_file = os.path.join(self.data_dir, "data.json")
self.huge = 69
Expand Down

0 comments on commit fe245c6

Please sign in to comment.