Yurii Paniv commited on
Commit
a459516
·
1 Parent(s): 87a0e8b

Fix quotes

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ if getenv("HF_API_TOKEN") is not None:
49
  t = Thread(target=check_thread, args=(log_queue,))
50
  t.start()
51
  print("Logging thread started.")
52
- print(f"Logging to '{getenv("OUTPUT_DATASET")}'")
53
  else:
54
  print("No HF_API_TOKEN found. Logging is disabled.")
55
 
 
49
  t = Thread(target=check_thread, args=(log_queue,))
50
  t.start()
51
  print("Logging thread started.")
52
+ print(f"Logging to '{getenv('OUTPUT_DATASET')}'")
53
  else:
54
  print("No HF_API_TOKEN found. Logging is disabled.")
55