Skip to content

Commit

Permalink
style: isort
Browse files Browse the repository at this point in the history
  • Loading branch information
deep5050 committed Oct 4, 2023
1 parent 9cdfd5e commit 1749632
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 20 deletions.
30 changes: 12 additions & 18 deletions radioactive/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,18 @@
from radioactive.help import show_help
from radioactive.last_station import Last_station
from radioactive.player import Player, kill_background_ffplays
from radioactive.utilities import (
handle_add_station,
handle_add_to_favorite,
handle_current_play_panel,
handle_direct_play,
handle_favorite_table,
handle_listen_keypress,
handle_log_level,
handle_play_last_station,
handle_record,
handle_save_last_station,
handle_search_stations,
handle_station_selection_menu,
handle_station_uuid_play,
handle_update_screen,
handle_user_choice_from_search_result,
handle_welcome_screen,
)
from radioactive.utilities import (handle_add_station, handle_add_to_favorite,
handle_current_play_panel,
handle_direct_play, handle_favorite_table,
handle_listen_keypress, handle_log_level,
handle_play_last_station, handle_record,
handle_save_last_station,
handle_search_stations,
handle_station_selection_menu,
handle_station_uuid_play,
handle_update_screen,
handle_user_choice_from_search_result,
handle_welcome_screen)

# globally needed as signal handler needs it
# to terminate main() properly
Expand Down
3 changes: 1 addition & 2 deletions radioactive/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
from rich.panel import Panel
from rich.table import Table
from rich.text import Text

from zenlog import log

from radioactive.last_station import Last_station
from radioactive.player import kill_background_ffplays
from radioactive.recorder import record_audio_from_url, record_audio_auto_codec
from radioactive.recorder import record_audio_auto_codec, record_audio_from_url

RED_COLOR = "\033[91m"
END_COLOR = "\033[0m"
Expand Down

0 comments on commit 1749632

Please sign in to comment.