Skip to content

Commit 787c6d0

Browse files
committed
fix ruff
1 parent fc5dc5d commit 787c6d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/evaluation/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def main():
9797
client = Client(base_url=args.eval_api_url, verify=False) # noqa: S501
9898

9999
if "localhost" not in args.eval_api_url:
100-
if path.isfile(args.eval_api_token_file) == True:
100+
if path.isfile(args.eval_api_token_file):
101101
with open(args.eval_api_token_file, mode="r", encoding="utf-8") as t_f:
102102
token = t_f.read().rstrip()
103103
else:

0 commit comments

Comments
 (0)