Commit 4f4ce99e authored by Yuta Okamoto's avatar Yuta Okamoto Committed by oroulet

suppress a type warning

parent 776c55e3
......@@ -316,7 +316,11 @@ class Client:
pass
@syncmethod
def translate_browsepaths(self, starting_node: ua.NodeId, relative_paths: List[Union[ua.RelativePath, str]]) -> List[ua.BrowsePathResult]:
def translate_browsepaths( # type: ignore[empty-body]
self,
starting_node: ua.NodeId,
relative_paths: List[Union[ua.RelativePath, str]]
) -> List[ua.BrowsePathResult]:
pass
def __enter__(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment