In src/cryptoadvance/specter/server.py, there are 4 imports that appear twice — once near the top (lines 8-12) and again a few lines below (lines 23-28):
from cryptoadvance.specter.liquid.rpc import LiquidRPC
from cryptoadvance.specter.managers.service_manager import ExtensionManager
from cryptoadvance.specter.rpc import BitcoinRPC
from cryptoadvance.specter.services import callbacks
Python just silently ignores the second import so nothing breaks, but it adds clutter and makes it look like something went wrong during a merge or copy-paste. The duplicate block (lines 23-28) can just be removed.