Skip to content

Commit

Permalink
opcua: Removed unnecessary code
Browse files Browse the repository at this point in the history
  • Loading branch information
wilterdinkrobert committed Dec 29, 2023
1 parent 8f67463 commit 489e1bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions thingsboard_gateway/connectors/opcua/opcua_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,8 +691,7 @@ def _check_path(self, config_path, node):
information_path = node_path + config_path
else:
information_path = config_path
result = information_path[:].replace('\\', '\\\\')
return result
return information_path.replace('\\', '\\\\')

@property
def subscribed(self):
Expand Down

0 comments on commit 489e1bb

Please sign in to comment.