mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
management: Use required kwargs in add_realm_args.
This makes management commands more readable, since one doesn't need to know details of how the library works to read based code.
This commit is contained in:
@@ -45,7 +45,7 @@ class ZulipBaseCommand(BaseCommand):
|
||||
return parser
|
||||
|
||||
def add_realm_args(
|
||||
self, parser: ArgumentParser, required: bool = False, help: Optional[str] = None
|
||||
self, parser: ArgumentParser, *, required: bool = False, help: Optional[str] = None
|
||||
) -> None:
|
||||
if help is None:
|
||||
help = """The numeric or string ID (subdomain) of the Zulip organization to modify.
|
||||
|
||||
Reference in New Issue
Block a user