Skip to content

Commit

Permalink
Spark config
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose J. Martinez committed Sep 11, 2023
1 parent c8584bd commit 13dbf67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grants_tagger_light/retagging/retagging.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _create_pipelines(save_to_path, batch_size, train_df, test_df, tag):
answer = input("Classifier already trained. Do you want to reuse it? [y|n]: ")
while answer not in ['y', 'n']:
answer = input("Classifier already trained. Do you want to reuse it? [y|n]: ")

Check failure on line 83 in grants_tagger_light/retagging/retagging.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (E501)

grants_tagger_light/retagging/retagging.py:83:89: E501 Line too long (90 > 88 characters)
if answer == 'n':
if answer == 'y':
retrain = False

if retrain:
Expand Down

0 comments on commit 13dbf67

Please sign in to comment.