From 9627ac2173368b9e8eeca8431892f1b377217393 Mon Sep 17 00:00:00 2001 From: Brad Solomon Date: Sun, 9 Feb 2020 17:23:33 -0500 Subject: [PATCH] Ignore .pytype/ directory (#3301) pytype is a static type analyzer for Python code; it generates files of inferred type information, located by default in .pytype/pyi. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index b6e47617..5d8f5722 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -127,3 +127,6 @@ dmypy.json # Pyre type checker .pyre/ + +# pytype static type analyzer +.pytype/