add to __all__

This commit is contained in:
Anubhav Patel 2018-01-25 23:09:19 +05:30
parent bcb5270ea6
commit 629aef6b35
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ except ImportError:
__all__ = [
"ipaddress", "uses_pycache", "console_to_str", "native_str",
"get_path_uid", "stdlib_pkgs", "WINDOWS", "samefile",
"get_path_uid", "stdlib_pkgs", "WINDOWS", "samefile", "get_terminal_size",
]
@ -196,7 +196,7 @@ def samefile(file1, file2):
if sys.version_info >= (3, 3):
"""Returns a tuple (x, y) representing the width(x) and the height(x)
"""Returns a tuple (x, y) representing the width(x) and the height(y)
in characters of the terminal window."""
def get_terminal_size():
cr = shutil.get_terminal_size()