コード例 #1
0
ファイル: suggestions.py プロジェクト: Zac-HD/mypy
 def visit_any(self, t: AnyType) -> Type:
     if not t.missing_import_name:
         return t.copy_modified(type_of_any=TypeOfAny.suggestion_engine)
     else:
         return t
コード例 #2
0
ファイル: suggestions.py プロジェクト: dasarisasidhar/G
 def visit_any(self, t: AnyType) -> Type:
     return t.copy_modified(type_of_any=TypeOfAny.suggestion_engine)