fix imports in atexit.pyi

This commit is contained in:
Matthias Kramm
2015-09-28 14:27:34 -07:00
parent e08327255e
commit a92ed64985

View File

@@ -1,5 +1,7 @@
"""Stub file for the 'atexit' module."""
from typing import Any, Callable
def _clear() -> None: ...
def _ncallbacks() -> int: ...
def _run_exitfuncs() -> None: ...