Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
opcua-asyncio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikola Balog
opcua-asyncio
Commits
d39a56d8
Commit
d39a56d8
authored
Jun 06, 2022
by
vruge
Committed by
oroulet
Jun 06, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reconciliator: added function definitions
- help for type check - highlight function arguments types Closes #885
parent
8afc95dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
asyncua/client/ha/reconciliator.py
asyncua/client/ha/reconciliator.py
+17
-0
No files found.
asyncua/client/ha/reconciliator.py
View file @
d39a56d8
...
...
@@ -438,3 +438,20 @@ class Reconciliator:
for
a
in
inspect
.
getmembers
(
self
):
if
not
a
[
0
].
startswith
(
"__"
)
and
not
inspect
.
ismethod
(
a
[
1
]):
_logger
.
debug
(
a
)
def
hook_mi_request
(
self
,
url
:
str
,
sub_name
:
str
,
nodes
:
Set
[
SortedDict
],
action
:
Method
):
"""placeholder for easily superclass the HaClient and implement custom logic
"""
def
hook_add_to_map_error
(
self
,
url
:
str
,
action
:
Method
,
fut
:
asyncio
.
Task
,
**
kwargs
):
"""placeholder for easily superclass the HaClient and implement custom logic
"""
def
hook_add_to_map
(
self
,
fut
:
asyncio
.
Task
,
url
:
str
,
action
:
Method
,
**
kwargs
):
"""placeholder for easily superclass the HaClient and implement custom logic
"""
def
hook_del_from_map
(
self
,
fut
:
asyncio
.
Task
,
url
:
str
,
**
kwargs
):
"""placeholder for easily superclass the HaClient and implement custom logic
"""
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment