v.0.6.3 imports organized
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
from .neopixel_64x64 import NeoPixel_64x64
|
||||
|
||||
__all__ = ["NeoPixel_64x64"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
from app.display.neopixel_64x64 import NeoPixel_64x64
|
||||
from app.display import NeoPixel_64x64
|
||||
from app.display.emoji import emoji_8x8, emoji_16x16
|
||||
import app.utils.colors as colors
|
||||
from app.utils import colors
|
||||
|
||||
class Emoji_Checker():
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from app.display.neopixel_64x64 import NeoPixel_64x64
|
||||
from app.display import NeoPixel_64x64
|
||||
from app.utils import align_font, colors
|
||||
import app.display.fonts as fonts
|
||||
|
||||
|
||||
@@ -2,9 +2,8 @@ import urequests # type: ignore
|
||||
import json
|
||||
|
||||
from app.classes import Weather, Location, CurrentCondition
|
||||
from app.display.neopixel_64x64 import NeoPixel_64x64
|
||||
from app.display import NeoPixel_64x64
|
||||
import app.utils.colors as colors
|
||||
import app.display.fonts as fonts
|
||||
from app.utils import URLEncoder
|
||||
|
||||
|
||||
@@ -15,7 +14,6 @@ class Weather_Checker():
|
||||
|
||||
def __init__(self, display: NeoPixel_64x64):
|
||||
self.display = display
|
||||
self.display.set_font( font=fonts.font_16x16)
|
||||
|
||||
def mock_weather_data(self):
|
||||
filepath = 'restapi/mock-weather.json'
|
||||
|
||||
3
app/web/__init__.py
Normal file
3
app/web/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from .wlan import Wlan
|
||||
|
||||
__all__=["Wlan"]
|
||||
Reference in New Issue
Block a user