Skip to content

Commit a4fc670

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent bcae8e3 commit a4fc670

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

stdlib/sched.pyi

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,7 @@ class scheduler:
4545

4646
def __init__(self, timefunc: Callable[[], float] = ..., delayfunc: Callable[[float], object] = ...) -> None: ...
4747
@overload
48-
def enterabs(
49-
self,
50-
time: float,
51-
priority: Any,
52-
action: Callable[[], object],
53-
) -> Event: ...
48+
def enterabs(self, time: float, priority: Any, action: Callable[[], object]) -> Event: ...
5449
@overload
5550
def enterabs(
5651
self,
@@ -61,12 +56,7 @@ class scheduler:
6156
kwargs: Mapping[str, V] = ...,
6257
) -> Event: ...
6358
@overload
64-
def enter(
65-
self,
66-
time: float,
67-
priority: Any,
68-
action: Callable[[], object],
69-
) -> Event: ...
59+
def enter(self, time: float, priority: Any, action: Callable[[], object]) -> Event: ...
7060
@overload
7161
def enter(
7262
self,

0 commit comments

Comments
 (0)