Fixed the documentation of the AccountConverter converter.

This commit is contained in:
依瑪貓 2023-02-01 16:42:58 +08:00
parent 241ad337c8
commit cb0dea58f1

View File

@ -28,10 +28,10 @@ class AccountConverter(BaseConverter):
corresponding account in the routes.""" corresponding account in the routes."""
def to_python(self, value: str) -> Account: def to_python(self, value: str) -> Account:
"""Converts a username to a user account. """Converts an account code to an account.
:param value: The username. :param value: The account code.
:return: The corresponding user account. :return: The corresponding account.
""" """
account: Account | None = Account.find_by_code(value) account: Account | None = Account.find_by_code(value)
if account is None: if account is None: