diff --git a/kobrax_moonraker_bridge.py b/kobrax_moonraker_bridge.py index cd8bd0b..0998a3c 100644 --- a/kobrax_moonraker_bridge.py +++ b/kobrax_moonraker_bridge.py @@ -26,27 +26,19 @@ This project is not affiliated with Anycubic. See NOTICE.md for details. """ import argparse -import sqlite3 -import uuid try: import config_loader as env_loader except ImportError: import env_loader import asyncio -import hashlib import copy import json import logging import os -import pathlib import re -import subprocess import sys -import tempfile import time import threading -import html -from urllib.parse import quote # For PyInstaller binaries everything sits next to sys.executable, otherwise next to __file__ _BASE = os.path.dirname(sys.executable) if getattr(sys, "frozen", False) else os.path.dirname(os.path.abspath(__file__))