-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(DRAFT): draft commit for PR
- Loading branch information
Showing
27 changed files
with
1,896 additions
and
1,471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,6 @@ dist/ | |
songs/ | ||
qrcode.png | ||
.DS_Store | ||
**build | ||
**dist | ||
**logs* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
] |
Oops, something went wrong.