Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
MelvinKl committed Oct 31, 2024
1 parent 2dc5d70 commit 68cffdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/stackit/core/wait.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import signal
import time
from http import HTTPStatus

import signal
import contextlib
from typing import Any, Callable, Tuple, Union


Expand Down
2 changes: 1 addition & 1 deletion tests/core/test_wait.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_timeout_throws_timeouterror(self):

def test_throttle_0_throws_error(self):
with pytest.raises(ValueError, match="throttle can't be 0"):
wait = Wait(lambda: (True, None, None, None), throttle=0)
_ = Wait(lambda: (True, None, None, None), throttle=0)

@pytest.mark.parametrize(
"check_function",
Expand Down

0 comments on commit 68cffdd

Please sign in to comment.