Skip to content

Commit

Permalink
suppress a type warning
Browse files Browse the repository at this point in the history
  • Loading branch information
okapies authored and oroulet committed Aug 24, 2023
1 parent 776c55e commit 4f4ce99
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion asyncua/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,11 @@ def write_values(self, nodes, values, raise_on_partial_error=True):
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):
Expand Down

0 comments on commit 4f4ce99

Please sign in to comment.