Skip to content

Commit 224a718

Browse files
committed
Fix imports
1 parent b677e74 commit 224a718

1 file changed

Lines changed: 4 additions & 10 deletions

File tree

robotics_application_manager/manager/manager.py

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,28 @@
55
and handling code analysis and formatting.
66
"""
77

8-
from __future__ import annotations
9-
import json
108
import sys
11-
import tempfile
12-
13-
import black
14-
159

1610
sys.path.insert(0, "/RoboticsApplicationManager")
1711

12+
import json
13+
import tempfile
14+
import black
1815
import os
1916
import signal
2017
import subprocess
21-
import sys
2218
import re
2319
import psutil
2420
import shutil
2521
import time
2622
import base64
2723
import zipfile
2824
import jedi
29-
3025
import traceback
26+
3127
from queue import Queue
3228
from uuid import uuid4
33-
3429
from transitions import Machine
35-
3630
from robotics_application_manager.comms import (
3731
ManagerConsumerMessageException,
3832
ManagerConsumer,

0 commit comments

Comments
 (0)