Skip to content

Commit 87eed7e

Browse files
committed
style: run black formatter and fix unused js var
1 parent 625a005 commit 87eed7e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

common/gui_interfaces/gui_interfaces/general/measuring_threading_gui_harmonic.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from datetime import datetime
22
import json
33
import subprocess
4-
import rclpy
54
import threading
65
import time
76
import websocket
@@ -13,7 +12,7 @@
1312

1413
sys.path.insert(0, "/RoboticsApplicationManager")
1514

16-
from robotics_application_manager import LogManager
15+
from robotics_application_manager import LogManager # noqa: E402
1716

1817

1918
class MeasuringThreadingGUI:
@@ -56,7 +55,9 @@ def start(self):
5655
threading.Thread(target=self.run_websocket, daemon=True).start()
5756

5857
# Initialize and start the RTF thread
59-
threading.Thread(target=self.get_real_time_factor, name="rtf_thread", daemon=True).start()
58+
threading.Thread(
59+
target=self.get_real_time_factor, name="rtf_thread", daemon=True
60+
).start()
6061

6162
# Initialize and start the Frequency thread
6263
threading.Thread(

react_frontend/src/components/exercise/WebGUIContainer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
import React, { MutableRefObject, ReactNode, useEffect, useRef } from "react";
1010

1111
const WebGUIContainer = ({
12-
id,
1312
children,
1413
}: {
1514
id?: string;

0 commit comments

Comments
 (0)