##// END OF EJS Templates
import-checker: allow 'from typing import ...'...
Yuya Nishihara -
r43995:0ad5d6c4 default
parent child Browse files
Show More
@@ -535,6 +535,8 b' def verify_modern_convention(module, roo'
535 535 if fullname != '__future__':
536 536 if not fullname or (
537 537 fullname in stdlib_modules
538 # allow standard 'from typing import ...' style
539 and fullname != 'typing'
538 540 and fullname not in localmods
539 541 and fullname + '.__init__' not in localmods
540 542 ):
General Comments 0
You need to be logged in to leave comments. Login now