Skip to content

Commit

Permalink
Small word change
Browse files Browse the repository at this point in the history
  • Loading branch information
FasterSpeeding committed Jan 29, 2022
1 parent ab82a28 commit 58e268a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hikari/impl/interaction_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
import aiohttp.typedefs

# DO NOT MOVE THIS IMPORT OUT OF THE if typing.TYPE_CHECKING block
# This is only imported here for type-hints and otherwise needs to be in-line
# This is only imported here for type-hints and otherwise needs to be inline
# imported as it's an optional dependency.
from nacl import signing

Expand Down Expand Up @@ -169,7 +169,7 @@ def __init__(
rest_client: rest_api.RESTClient,
public_key: typing.Optional[bytes] = None,
) -> None:
# This is kept in-line as pynacl is an optional dependency.
# This is kept inline as pynacl is an optional dependency.
try:
from nacl import signing

Expand Down Expand Up @@ -207,7 +207,7 @@ def is_alive(self) -> bool:
return self._server is not None

async def _fetch_public_key(self) -> signing.VerifyKey:
# This is kept in-line as pynacl is an optional dependency.
# This is kept inline as pynacl is an optional dependency.
from nacl import signing

if self._application_fetch_lock is None:
Expand Down

0 comments on commit 58e268a

Please sign in to comment.