Skip to content

Commit

Permalink
Fix shadowing annoyance
Browse files Browse the repository at this point in the history
  • Loading branch information
tandemdude committed Jun 22, 2024
1 parent cefb1a1 commit ba39566
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lightbulb/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
if t.TYPE_CHECKING:
import types

from lightbulb.commands import options
from lightbulb.commands import options as options_
from lightbulb.internal.types import MaybeAwaitable

T = t.TypeVar("T")
Expand Down Expand Up @@ -592,7 +592,7 @@ def build_autocomplete_context(
return context_.AutocompleteContext(self, interaction, options, command_cls)

async def _execute_autocomplete_context(
self, context: context_.AutocompleteContext, autocomplete_provider: options.AutocompleteProviderT
self, context: context_.AutocompleteContext, autocomplete_provider: options_.AutocompleteProviderT
) -> None:
with di_.ensure_di_context(self.di):
try:
Expand Down

0 comments on commit ba39566

Please sign in to comment.