small improvements
This commit is contained in:
@@ -3,8 +3,8 @@ from Levenshtein import distance
|
||||
|
||||
|
||||
def compare_data(new, sys, count_test):
|
||||
print(f"\nEinträge in Import Liste: {len(new)}")
|
||||
print(f"Einträge in System Liste: {len(sys)}")
|
||||
print(f"\nEinträge in System Liste: {len(sys)}")
|
||||
print(f"Einträge in Import Liste: {len(new)}")
|
||||
|
||||
bool_class = 'klasse' in new.columns
|
||||
|
||||
@@ -45,6 +45,6 @@ def search_typos(new, sys):
|
||||
|
||||
|
||||
def print_status(matches, new, old, count_test):
|
||||
print("\nAnzahl Übereinstimmungen:", len(matches) + count_test)
|
||||
print("Anzahl neuer Nutzer:", len(new))
|
||||
print("\nAnzahl neuer Nutzer:", len(new))
|
||||
print("Anzahl Übereinstimmungen:", len(matches) + count_test)
|
||||
print("Anzahl veralteter Nutzer:", len(old) - count_test)
|
||||
|
||||
Reference in New Issue
Block a user