Skip to content

Commit bb51e46

Browse files
authored
Remove unused mypy ignores (#927)
1 parent 8f5e5d6 commit bb51e46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

twine/auth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self, config: utils.RepositoryConfig, input: CredentialInput) -> No
2828
def choose(cls, interactive: bool) -> Type["Resolver"]:
2929
return cls if interactive else Private
3030

31-
@property # type: ignore # https://github.com/python/mypy/issues/1362
31+
@property
3232
@functools.lru_cache()
3333
def username(self) -> Optional[str]:
3434
return utils.get_userpass_value(
@@ -38,7 +38,7 @@ def username(self) -> Optional[str]:
3838
prompt_strategy=self.username_from_keyring_or_prompt,
3939
)
4040

41-
@property # type: ignore # https://github.com/python/mypy/issues/1362
41+
@property
4242
@functools.lru_cache()
4343
def password(self) -> Optional[str]:
4444
return utils.get_userpass_value(

0 commit comments

Comments
 (0)