Skip to content

Commit 7a9d00f

Browse files
committed
Remove unused mypy ignores
1 parent 8f5e5d6 commit 7a9d00f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

twine/auth.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ 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
3231
@functools.lru_cache()
3332
def username(self) -> Optional[str]:
3433
return utils.get_userpass_value(
@@ -38,7 +37,6 @@ def username(self) -> Optional[str]:
3837
prompt_strategy=self.username_from_keyring_or_prompt,
3938
)
4039

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

0 commit comments

Comments
 (0)