We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
api.add_tag()
Hey π
I think a find a new bug in this wrapper.
When I tried to add a tag using api.add_tag("test", "FF0000"), I got the following error :
api.add_tag("test", "FF0000")
vscode β /workspaces/KumaCompanion (main) $ kuma tag add --name test -c "#FFFFFF" Traceback (most recent call last): File "/workspaces/KumaCompanion/src/main.py", line 44, in <module> main() File "/workspaces/KumaCompanion/src/main.py", line 38, in main args.func(args) File "/workspaces/KumaCompanion/src/commands/tag/add.py", line 13, in add_tag api.add_tag("TEST", "#FF0000") TypeError: UptimeKumaApi.add_tag() takes 1 positional argument but 3 were given
Here a snippet of my code :
def add_tag(args): # Connection to Uptime Kuma API api = KumaCompanion().get_api() # Creating a new tag # Add tag api.add_tag("TEST", "#FF0000")
Do you have any solutions ?
The text was updated successfully, but these errors were encountered:
Try using keyword arguments as per the documentation:
api.add_tag(name="TEST", color="#FF0000")
Sorry, something went wrong.
No branches or pull requests
Hey π
I think a find a new bug in this wrapper.
When I tried to add a tag using
api.add_tag("test", "FF0000")
, I got the following error :Here a snippet of my code :
Do you have any solutions ?
The text was updated successfully, but these errors were encountered: