jannisborn commited on
Commit
3de3c62
·
unverified ·
1 Parent(s): eebbf31
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -30,9 +30,10 @@ def run_inference(
30
  confidence: bool,
31
  ):
32
  # Read SMILES
 
33
  if smiles is None and smiles_path is None:
34
  raise TypeError("Pass either single SMILES or a file")
35
- elif smiles is not None and smiles_path is not None:
36
  raise TypeError("Pass either single SMILES or a file, not both")
37
  elif smiles is not None:
38
  smiles = [smiles]
 
30
  confidence: bool,
31
  ):
32
  # Read SMILES
33
+ print("smiles", smiles)
34
  if smiles is None and smiles_path is None:
35
  raise TypeError("Pass either single SMILES or a file")
36
+ elif (smiles is not None) and (smiles_path is not None):
37
  raise TypeError("Pass either single SMILES or a file, not both")
38
  elif smiles is not None:
39
  smiles = [smiles]