From f19794daf979628a22bf68740a636fd4a26eabc2 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 13 Jun 2019 01:36:12 +0200 Subject: [PATCH] Small doc fix, not updated --- royalnet/utils/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/royalnet/utils/command.py b/royalnet/utils/command.py index f9e515f8..d038cdc3 100644 --- a/royalnet/utils/command.py +++ b/royalnet/utils/command.py @@ -13,7 +13,7 @@ class Command: command_description: A small description of the command, to be displayed when the command is being autocompleted. command_syntax: The syntax of the command, to be displayed when a :py:exc:`royalnet.error.InvalidInputError` is raised, in the format ``(required_arg) [optional_arg]``. require_alchemy_tables: A set of :py:class:`royalnet.database` tables, that must exist for this command to work. - network_handlers: A list of :py:class:`classyalnet.utils.NetworkHandler`s that must exist for this command to work.""" + network_handlers: A list of :py:class:`royalnet.utils.NetworkHandler`s that must exist for this command to work.""" command_name: str = NotImplemented command_description: str = NotImplemented