Skip to content

Commit

Permalink
PEP8/style fixes.
Browse files Browse the repository at this point in the history
Signed-off-by: David <toonarmycaptain@hotmail.com>
  • Loading branch information
toonarmycaptain committed Mar 4, 2019
1 parent bb2253b commit fdbf28d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dionysus_app/UI_menus/settings_functions_UI.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
select_folder_dialogue
)

APP_DEFAULT_CHART_SAVE_FOLDER = DataFolder.generate_rel_path(DataFolder.APP_DEFAULT_CHART_SAVE_FOLDER.value)
APP_DEFAULT_CHART_SAVE_FOLDER = DataFolder.generate_rel_path(
DataFolder.APP_DEFAULT_CHART_SAVE_FOLDER.value)


def welcome_set_default_location_message():
Expand Down Expand Up @@ -53,7 +54,8 @@ def user_decides_to_set_default_location():


def user_set_chart_save_folder():
dialogue_message = 'Please select location for chart save folder, or press cancel to use default.'
dialogue_message = ('Please select location for chart save folder, or'
' press cancel to use default.')
new_default_save_location = select_folder_dialogue(title_str=dialogue_message, start_dir='..')

if not new_default_save_location: # User presses cancel, doesn't select a folder.
Expand Down

0 comments on commit fdbf28d

Please sign in to comment.