Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit 43c5863

Browse files
committed
Fixed another linting warning.
1 parent 543cc71 commit 43c5863

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

unity_py/unity.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ def submit_job(self, app_name: str, job_config: str) -> str:
5757

5858
# Hack to remove localhost domain/port until this can be updated in the WPST API
5959
if "http://127.0.0.1:5000" in job_location:
60-
job_location = job_location.replace("http://127.0.0.1:5000", _get_config(self._config, 'jobs', 'sps_wpst_domain'))
60+
job_location = job_location.replace(
61+
"http://127.0.0.1:5000",
62+
_get_config(self._config, 'jobs', 'sps_wpst_domain')
63+
)
6164

6265
job_id = job_location.replace(job_url + "/", "")
6366

0 commit comments

Comments
 (0)