Skip to content

Commit

Permalink
refactor(DRAFT): draft commit for PR
Browse files Browse the repository at this point in the history
  • Loading branch information
mariugul committed Sep 7, 2024
1 parent 50a15e7 commit fc9406e
Show file tree
Hide file tree
Showing 27 changed files with 1,829 additions and 1,422 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ dist/
songs/
qrcode.png
.DS_Store
**build
**dist
**logs*
25 changes: 21 additions & 4 deletions pikaraoke/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@
from pikaraoke.karaoke import Karaoke
from pikaraoke.lib.get_platform import get_platform
from pikaraoke.lib.get_platform import Platform, get_platform
from pikaraoke.lib.utils import (
PiKaraokeServer,
filename_from_path,
get_current_app,
hash_dict,
is_admin,
translate,
url_escape,
)
from pikaraoke.version import __version__

PACKAGE = __package__
VERSION = __version__

__all__ = [
"VERSION",
"PACKAGE",
Karaoke.__name__,
filename_from_path.__name__,
get_current_app.__name__,
get_platform.__name__,
hash_dict.__name__,
is_admin.__name__,
Karaoke.__name__,
"PACKAGE",
PiKaraokeServer.__name__,
Platform.__name__,
translate.__name__,
url_escape.__name__,
"VERSION",
]
Loading

0 comments on commit fc9406e

Please sign in to comment.