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 f27efac commit a5bfb4bCopy full SHA for a5bfb4b
pyoverkiz/models.py
@@ -471,7 +471,7 @@ class Command:
471
"""Represents an OverKiz Command."""
472
473
type: int | None = None
474
- name: OverkizCommand
+ name: str | OverkizCommand
475
parameters: list[str | int | float | OverkizCommandParam] | None
476
477
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