We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70be5cd commit 2e53ea5Copy full SHA for 2e53ea5
pyoverkiz/models.py
@@ -472,7 +472,7 @@ class Command:
472
"""Represents an OverKiz Command."""
473
474
type: int | None = None
475
- name: OverkizCommand
+ name: str | OverkizCommand
476
parameters: list[str | int | float | OverkizCommandParam] | None
477
478
def __init__(
test_queue_example.py
@@ -1,6 +1,11 @@
1
#!/usr/bin/env python3
2
+# mypy: ignore-errors
3
+# ty: ignore
4
+
5
"""Simple example demonstrating the action queue feature."""
6
7
+from __future__ import annotations
8
9
import asyncio
10
11
from pyoverkiz.client import OverkizClient
0 commit comments