Skip to content
Open
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
5 changes: 0 additions & 5 deletions wahoomc/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
# import official python packages
import argparse
import sys
from platform import uname

# for gui
import tkinter as tk
Expand Down Expand Up @@ -94,10 +93,6 @@ def process_call_of_the_tool():
# process depending on GUI or CLI processing.
# returns the input parameters in both cases
if args.subparser_name == 'gui':
# Prevents the initialisation of the graphical GUI on WSL.
if 'microsoft' in uname().release:
sys.exit("GUI can not be startet because no graphical interface is available. Start with 'python -m wahoo_mc cli -h' or 'python -m wahoo_mc -h' to see command line options.")

o_input_data = GuiInput().start_gui()
return o_input_data

Expand Down