Skip to content

Commit

Permalink
fix: ingress not working in HA #363 (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
flobz authored Nov 13, 2022
1 parent 581b3f4 commit e325973
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions psa_car_controller/__main__.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
#!/usr/bin/env python3
import logging
import os
import sys
from threading import Thread

logger = logging.getLogger(__name__)
DIR = os.path.dirname(os.path.realpath(__file__))
if sys.version_info < (3, 7):
raise RuntimeError("This application requires Python 3.7+")

# pylint: disable=wrong-import-position
from psa_car_controller.psacc.application.car_controller import PSACarController
from psa_car_controller import web
from psa_car_controller.common.mylogger import logger


# noqa: MC0001
Expand Down

0 comments on commit e325973

Please sign in to comment.