Browse Source

'/' symbols in task-names are not allowed anymore

Nico Ruhnke 2 years ago
parent
commit
9f0ad99050
1 changed files with 5 additions and 3 deletions
  1. 5 3
      time_recoder/time_recoder_config.py

+ 5 - 3
time_recoder/time_recoder_config.py

@@ -1,5 +1,7 @@
-DB_PATH = r'C:\Users\Danny\Desktop\EnD and Investment\Tools\time_recoder\time_recorder_database'
+from pathlib import Path
+
 HOURLY_WAGE_IN_EURO = 28
-PATH = r'C:\Users\Danny\Desktop\EnD and Investment\Tools\time_recoder\time_recorded_tables\work_time_danny.xlsx'
+DB_PATH = str(Path("/home/nokko/Dokumente/Business/EnD/Python/Tools/time_recoder/time_recorder_database"))
+PATH = str(Path('/home/nokko/Dokumente/Business/EnD/Python/Tools/time_recoder/time_recorded_tables/nokko_ubuntu.xlsx'))
 TEST_CASE = True
-NAME = 'Daniel Krauel'
+NAME = 'Nico Ruhnke'