Browse Source

fix missing comma

ogert 4 years ago
parent
commit
3b3c10c928
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cdplib/db_migration/MigrationCleaning.py

+ 1 - 1
cdplib/db_migration/MigrationCleaning.py

@@ -358,7 +358,7 @@ class MigrationCleaning:
                 elif python_type == bool:
 
                     data[column] = data[column].str.lower()
-                    accepted_bool = {'ja': True, 'j': True, '1': True, 1:True
+                    accepted_bool = {'ja': True, 'j': True, '1': True, 1:True,
                                      'yes': True, 'y': True, 'true':True,
                                      't': True, 'nein': False, 'n': False,
                                      'no': False, 'false': False, 'f': False,