Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 240570045
  • Loading branch information
christian-rauch authored and arnoegw committed Mar 27, 2019
1 parent a9d9711 commit 988a8db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/image_retraining/retrain.py
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ def logging_level_verbosity(logging_verbosity):
return name_to_level[logging_verbosity]
except Exception as e:
raise RuntimeError('Not supported logs verbosity (%s). Use one of %s.' %
(str(e), [*name_to_level]))
(str(e), list(name_to_level)))


def main(_):
Expand Down

0 comments on commit 988a8db

Please sign in to comment.