Spaces:
Running
Running
Eachan Johnson
commited on
Commit
·
ef937ae
1
Parent(s):
2bfd9e8
Fix typo
Browse files
app.py
CHANGED
@@ -233,7 +233,7 @@ def convert_file(
|
|
233 |
output_representation: Union[str, Iterable[str]] = 'smiles'
|
234 |
):
|
235 |
output_representation = cast(output_representation, to=list)
|
236 |
-
message = f"Converting from {input_representation} to {
|
237 |
gr.Info(message, duration=5)
|
238 |
print_err(message)
|
239 |
print_err(df.head())
|
|
|
233 |
output_representation: Union[str, Iterable[str]] = 'smiles'
|
234 |
):
|
235 |
output_representation = cast(output_representation, to=list)
|
236 |
+
message = f"Converting from {input_representation} to {', '.join(output_representation)}..."
|
237 |
gr.Info(message, duration=5)
|
238 |
print_err(message)
|
239 |
print_err(df.head())
|