add type hint for console

This commit is contained in:
Prodesire 2018-02-15 16:17:31 +08:00
parent e2624dfc20
commit 311e8d1f3d
1 changed files with 5 additions and 0 deletions

5
pydu/console.pyi Normal file
View File

@ -0,0 +1,5 @@
"""Stubs for console"""
from typing import Tuple
def console_size(fallback: Tuple[int, int]=...) -> Tuple[int, int]: ...