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 f97a5f6 commit bfabbcbCopy full SHA for bfabbcb
stubs/gunicorn/gunicorn/workers/workertmp.pyi
@@ -1,11 +1,12 @@
1
-from _typeshed import Incomplete
+from gunicorn.config import Config
2
+
3
+PLATFORM: str
4
+IS_CYGWIN: bool
5
-PLATFORM: Incomplete
-IS_CYGWIN: Incomplete
6
7
class WorkerTmp:
- def __init__(self, cfg) -> None: ...
8
+ def __init__(self, cfg: Config) -> None: ...
9
def notify(self) -> None: ...
- def last_update(self): ...
10
- def fileno(self): ...
11
- def close(self): ...
+ def last_update(self) -> float: ...
+ def fileno(self) -> int: ...
12
+ def close(self) -> None: ...
0 commit comments