Skip to content

Commit a98fc51

Browse files
committed
fix: remove unused type: ignore comment (mypy)
1 parent 99e30d6 commit a98fc51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/azure_pricing_mcp/github_pricing/handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class GitHubPricingHandlers:
2525

2626
def _get_github_pricing_service(self) -> GitHubPricingService:
2727
"""Get or lazily create the GitHubPricingService."""
28-
if self._github_pricing_service is None: # type: ignore[has-type]
28+
if self._github_pricing_service is None:
2929
self._github_pricing_service = GitHubPricingService()
3030
return self._github_pricing_service
3131

0 commit comments

Comments
 (0)