We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc5dc5d commit 787c6d0Copy full SHA for 787c6d0
scripts/evaluation/driver.py
@@ -97,7 +97,7 @@ def main():
97
client = Client(base_url=args.eval_api_url, verify=False) # noqa: S501
98
99
if "localhost" not in args.eval_api_url:
100
- if path.isfile(args.eval_api_token_file) == True:
+ if path.isfile(args.eval_api_token_file):
101
with open(args.eval_api_token_file, mode="r", encoding="utf-8") as t_f:
102
token = t_f.read().rstrip()
103
else:
0 commit comments