Skip to content

Commit

Permalink
fix: [tool] minor cosmetic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cvandeplas committed Apr 23, 2023
1 parent 568e6a7 commit fd44eba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/gen_relationships.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def __call__(self, parser, namespace, values, option_string=None):
user_input = input(f"Create relation? [\u0332yes] / \u0332no / \u0332details / \u0332tags / \u0332relation: ").lower().strip()
if user_input in ['yes', 'y', '']:
create_relationship = True
logging.info(" creating it.")
print(" creating it.")
break
if user_input in ['no', 'n']:
create_relationship = False
Expand Down Expand Up @@ -195,6 +195,7 @@ def __call__(self, parser, namespace, values, option_string=None):
if create_relation(lookup_cluster, cluster, rel_type=rel_type, tags=tags):
cluster_files_changed_tracking[lookup_cluster_filename] = True
except KeyboardInterrupt:
print("")
pass

# save all to file, and increment version number if something changed
Expand Down

0 comments on commit fd44eba

Please sign in to comment.