Clean up imports

This commit is contained in:
Mike Cifelli 2023-01-06 11:14:00 -05:00
parent ea8a29da5f
commit 0abb117abb
1 changed files with 6 additions and 6 deletions

View File

@ -2,12 +2,12 @@ import json
import requests
import sys
from chutney.symbol_display import SymbolDisplay
from chutney.garage import GarageDisplay
from chutney.garage import GarageUpdater
from chutney.time import TimeDisplay
from chutney.weather import WeatherDisplay
from chutney.weather import WeatherUpdater
from .symbol_display import SymbolDisplay
from .garage import GarageDisplay
from .garage import GarageUpdater
from .time import TimeDisplay
from .weather import WeatherDisplay
from .weather import WeatherUpdater
from configparser import ConfigParser
from multiprocessing import Event
from multiprocessing import Process