Skip to content

Commit 83a2452

Browse files
committed
Remove extranious f string for linter
1 parent 5a78cea commit 83a2452

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyreason/scripts/utils/fact_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def parse_fact(fact_text):
2727
if ':' in f:
2828
parts = f.split(':')
2929
if len(parts) != 2:
30-
raise ValueError(f"Invalid fact format: expected at most one colon separator")
30+
raise ValueError("Invalid fact format: expected at most one colon separator")
3131
pred_comp, bound = parts
3232

3333
# Check for negation with explicit bound (ambiguous)

0 commit comments

Comments
 (0)