From aa16b5e33917fc5b6da974245ea42a956e448842 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Wed, 29 Apr 2020 22:02:25 +0100 Subject: [PATCH] Shift the PreferencesUI.py file into a new `preferences` subpackage --- flatcamGUI/FlatCAMGUI.py | 2 +- flatcamGUI/{ => preferences}/PreferencesUI.py | 0 flatcamGUI/preferences/__init__.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename flatcamGUI/{ => preferences}/PreferencesUI.py (100%) create mode 100644 flatcamGUI/preferences/__init__.py diff --git a/flatcamGUI/FlatCAMGUI.py b/flatcamGUI/FlatCAMGUI.py index 05e8a272..4889f0f2 100644 --- a/flatcamGUI/FlatCAMGUI.py +++ b/flatcamGUI/FlatCAMGUI.py @@ -11,7 +11,7 @@ # Date: 3/10/2019 # # ########################################################## -from flatcamGUI.PreferencesUI import * +from flatcamGUI.preferences.PreferencesUI import * from flatcamEditors.FlatCAMGeoEditor import FCShapeTool from matplotlib.backend_bases import KeyEvent as mpl_key_event diff --git a/flatcamGUI/PreferencesUI.py b/flatcamGUI/preferences/PreferencesUI.py similarity index 100% rename from flatcamGUI/PreferencesUI.py rename to flatcamGUI/preferences/PreferencesUI.py diff --git a/flatcamGUI/preferences/__init__.py b/flatcamGUI/preferences/__init__.py new file mode 100644 index 00000000..e69de29b