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.
ex_app_get_info
1 parent afe6e18 commit eb23b68Copy full SHA for eb23b68
nc_py_api/apps.py
@@ -16,7 +16,7 @@ class ExAppInfo(TypedDict):
16
name: str
17
version: str
18
enabled: bool
19
- last_response_time: int
+ last_check_time: int
20
system: bool
21
22
tests/apps_test.py
@@ -69,5 +69,5 @@ def test_ex_app_get_info(nc):
69
assert isinstance(nc_py_api["name"], str)
70
assert isinstance(nc_py_api["version"], str)
71
assert nc_py_api["enabled"]
72
- assert isinstance(nc_py_api["last_response_time"], int)
+ assert isinstance(nc_py_api["last_check_time"], int)
73
assert nc_py_api["system"]
0 commit comments