mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 19:01:15 +08:00
Add missing 'self'
This commit is contained in:
@@ -6,11 +6,11 @@
|
||||
from typing import Any, List, Tuple, Dict, GenericType
|
||||
|
||||
class zipimporter(object):
|
||||
def find_module(a: str, *args, **kwargs) -> None: ...
|
||||
def get_code(a: str) -> Any: ...
|
||||
def get_data(a: str) -> str:
|
||||
def find_module(self, a: str, *args, **kwargs) -> None: ...
|
||||
def get_code(self, a: str) -> Any: ...
|
||||
def get_data(self, a: str) -> str:
|
||||
raise IOError()
|
||||
def get_filename(a: str) -> str: ...
|
||||
def get_source(a: str) -> Any: ...
|
||||
def is_package(a: str) -> bool: ...
|
||||
def load_module(a: str) -> Any: ...
|
||||
def get_filename(self, a: str) -> str: ...
|
||||
def get_source(self, a: str) -> Any: ...
|
||||
def is_package(self, a: str) -> bool: ...
|
||||
def load_module(self, a: str) -> Any: ...
|
||||
|
||||
Reference in New Issue
Block a user