Remove stub for appdirs

This commit is contained in:
Pradyun Gedam 2017-12-27 18:47:21 +05:30
parent a91e545900
commit 25afbd3f99
No known key found for this signature in database
GPG Key ID: DA17C4B29CB32E4B
2 changed files with 4 additions and 3 deletions

View File

@ -1 +0,0 @@
from appdirs import *

View File

@ -144,9 +144,11 @@ def update_stubs(ctx):
print("[vendoring.update_stubs] Add mypy stubs")
# Some projects need stubs other than a simple <name>.pyi
extra_stubs_needed = {
"six": ["six.__init__", "six.moves"]
# Some projects need stubs other than a simple <name>.pyi
"six": ["six.__init__", "six.moves"],
# Some projects should not have stubs coz they're single file modules
"appdirs": [],
}
for lib in vendored_libs: