Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog authored Dec 26, 2023
1 parent 2d2267b commit a5ecc24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brewtils/auto_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def addFunctions(self, client):
_wrapped = getattr(client, func)
if not hasattr(_wrapped, "_command") and not func.startswith("__"):
# decorators.py will handle all of the markings
if not func.startswith("_"):
if func.startswith("_"):
_wrapped._command = Command(hidden=True)
else:
_wrapped._command = Command()
Expand Down

0 comments on commit a5ecc24

Please sign in to comment.