Skip to content

Commit

Permalink
fix strict mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
dswigh committed Jan 20, 2024
1 parent ac67db1 commit 1ab7a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orderly/extract/extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ def contains_transition_metal(agents: AGENTS) -> bool:
return True
return False

def contains_charcoal(procedure_details) -> bool:
def contains_charcoal(procedure_details: str) -> bool:
if "charcoal" in procedure_details.lower():
return True
return False
Expand Down

0 comments on commit 1ab7a30

Please sign in to comment.