Skip to content
Snippets Groups Projects
Commit a2caebea authored by Andrea Parenti's avatar Andrea Parenti Committed by Jonathan Correa Magdalena
Browse files

Remove unused function

parent 5acc2575
No related branches found
No related tags found
2 merge requests!2Draft: Feat/p8003,!1First version
Pipeline #162797 passed
......@@ -124,17 +124,6 @@ class Tempus(Device):
last_time = actual_time
await sleep(1)
def clean_stderr(self, msg):
"""Strip harmless lines from stderr"""
clean_msg = ""
for line in msg.splitlines():
if "X11 forwarding request failed" in line:
continue # harmless
elif "WARNING:root:Didn't read back" in line:
continue # harmless
clean_msg += line + '\n'
return clean_msg
controllerIp = String(
displayedName="Controller IP",
defaultValue="169.254.1.5",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment