commit message from python script

This commit is contained in:
2023-10-14 20:21:36 +02:00
parent 1bfc592491
commit 9f36e7db35

View File

@@ -6,7 +6,7 @@ import shelve, os
class steuer_rechner:
def __init__(self, lohn_eingabe = int) -> None:
self.lohneingabe = lohn_eingabe
self.data_datei = os.path.dirname(os.path.realpath(__file__)) + os.sep + "data"
y = os.path.dirname(os.path.realpath(__file__)) + os.sep + "data"
self.month = ['Jan', 'Feb', 'Mae', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez']
if not os.path.exists(self.data_datei):
month_dict = dict.fromkeys(self.month, 0)