You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`flake8-annotations` is a plugin for [Flake8](http://flake8.pycqa.org/en/latest/) that detects the absence of [PEP 3107-style](https://www.python.org/dev/peps/pep-3107/) function annotations and [PEP 484-style](https://www.python.org/dev/peps/pep-0484/#type-comments) type comments (see: [Caveats](#Caveats-for-PEP-484-style-Type-Comments)).
8
+
`flake8-annotations` is a plugin for [Flake8](http://flake8.pycqa.org/en/latest/) that detects the absence of [PEP 3107-style](https://www.python.org/dev/peps/pep-3107/) function annotations and [PEP 484-style](https://www.python.org/dev/peps/pep-0484/#type-comments) type comments (see: [Caveats](#Caveats-for-PEP-484-style-Type-Comments)).
6
9
7
10
What this won't do: Check variable annotations (see: [PEP 526](https://www.python.org/dev/peps/pep-0526/)), respect stub files, or replace [mypy](http://mypy-lang.org/).
8
11
@@ -96,7 +99,7 @@ Decorators are matched based on their attribute name. For example, `"singledispa
96
99
97
100
**NOTE:** Deeper imports, such as `a.b.singledispatch` are not supported.
98
101
99
-
See [Generic Functions](#generic-functions) for additional information.
102
+
See:[Generic Functions](#generic-functions) for additional information.
100
103
101
104
Default: `"singledispatch, singledispatchmethod"`
102
105
@@ -110,7 +113,7 @@ Decorators are matched based on their attribute name. For example, `"overload"`
110
113
111
114
**NOTE:** Deeper imports, such as `a.b.overload` are not supported.
112
115
113
-
See [The `typing.overload` Decorator](#the-typingoverload-decorator) for additional information.
116
+
See:[The `typing.overload` Decorator](#the-typingoverload-decorator) for additional information.
0 commit comments