Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions simplexui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,21 @@
#
# Simplex is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Simplex. If not, see <http://www.gnu.org/licenses/>.

from __future__ import absolute_import
import os

SIMPLEX_UI = None
SIMPLEX_UI_ROOT = None
__version__ = "v0.0.1-dev"


def runSimplexUI():
from .interface import rootWindow, DISPATCH
from .interface import DISPATCH, rootWindow
from .simplexDialog import SimplexDialog

global SIMPLEX_UI
Expand All @@ -46,6 +45,7 @@ def tool_paths():


if __name__ == "__main__":
import os
import sys

folder = os.path.dirname(os.path.dirname(__file__))
Expand Down
Loading