diff options
author | aktersnurra <gustaf.rydholm@gmail.com> | 2020-06-02 22:49:22 +0200 |
---|---|---|
committer | aktersnurra <gustaf.rydholm@gmail.com> | 2020-06-02 22:49:22 +0200 |
commit | 118c02c2730aaac2d10c2b9847339f6ffc83223f (patch) | |
tree | f7e1dc9a7159b63945a19d742a525f20c90c969e /.pytype/pyi | |
parent | 81d48b6a4da96696afde87a54f9fb7d89dd64cd2 (diff) |
Working on lab 1.
Diffstat (limited to '.pytype/pyi')
-rw-r--r-- | .pytype/pyi/noxfile.pyi | 21 | ||||
-rw-r--r-- | .pytype/pyi/text_recognizer/__init__.pyi | 3 |
2 files changed, 24 insertions, 0 deletions
diff --git a/.pytype/pyi/noxfile.pyi b/.pytype/pyi/noxfile.pyi new file mode 100644 index 0000000..d0ad1c1 --- /dev/null +++ b/.pytype/pyi/noxfile.pyi @@ -0,0 +1,21 @@ +# (generated with --quick) + +from typing import Any, Tuple + +Session: Any +black: Any +coverage: Any +docs: Any +lint: Any +locations: Tuple[str, str, str] +mypy: Any +nox: Any +package: str +pytype: Any +safety: Any +tempfile: module +tests: Any +typeguard: Any +xdoctest: Any + +def install_with_constraints(session, *args: str, **kwargs) -> None: ... diff --git a/.pytype/pyi/text_recognizer/__init__.pyi b/.pytype/pyi/text_recognizer/__init__.pyi new file mode 100644 index 0000000..716613c --- /dev/null +++ b/.pytype/pyi/text_recognizer/__init__.pyi @@ -0,0 +1,3 @@ +# (generated with --quick) + +__version__: str |