Skip to content

Commit

Permalink
refactoring, use more typing (yes, i come from java/kotlin)
Browse files Browse the repository at this point in the history
  • Loading branch information
lugipfupf committed May 4, 2024
1 parent 2c3d14b commit 256c8f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 6 additions & 1 deletion happyMirror/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

from flask import Flask, render_template

import config
# one works when running, one for testing
try:
import config
except ImportError:
from . import config

from happyMirror.widgets_loader import WidgetsLoader


Expand Down
2 changes: 0 additions & 2 deletions happyMirror/test_widgets_loader.py

This file was deleted.

0 comments on commit 256c8f0

Please sign in to comment.