mirror of https://github.com/stijndcl/didier
Small bugfix
parent
bef8742459
commit
6ef4007f13
|
@ -1,3 +1,4 @@
|
||||||
|
import inspect
|
||||||
import re
|
import re
|
||||||
from typing import Mapping, Optional, Type
|
from typing import Mapping, Optional, Type
|
||||||
|
|
||||||
|
@ -86,7 +87,9 @@ class CustomHelpCommand(commands.MinimalHelpCommand):
|
||||||
if is_optional:
|
if is_optional:
|
||||||
name = f"[{name}]"
|
name = f"[{name}]"
|
||||||
|
|
||||||
if issubclass(param.annotation, PosixFlags):
|
# If there are options/flags, add them
|
||||||
|
# The hardcoded name-check is done for performance reasons
|
||||||
|
if name == "flags" and inspect.isclass(param.annotation) and issubclass(param.annotation, PosixFlags):
|
||||||
signature_list.append("[--OPTIONS]")
|
signature_list.append("[--OPTIONS]")
|
||||||
else:
|
else:
|
||||||
signature_list.append(name)
|
signature_list.append(name)
|
||||||
|
|
Loading…
Reference in New Issue