Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Nov 30, 2023
1 parent c281490 commit 4c1b03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spinnman/spalloc/spalloc_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def open_udp_listener_connection(self) -> UDPConnection:
def wait_for_state_change(self, old_state: SpallocState,
n_retries: Optional[int] = None) -> SpallocState:
retries = 0
while (old_state != SpallocState.DESTROYED and
while (old_state != SpallocState.DESTROYED and
(n_retries is None or retries < n_retries)):
retries += 1
obj = self._get(self._url, wait="true", timeout=None).json()
Expand Down

0 comments on commit 4c1b03c

Please sign in to comment.