aboutsummaryrefslogtreecommitdiff
path: root/lldb/examples/python/lldbtk.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/examples/python/lldbtk.py')
-rw-r--r--lldb/examples/python/lldbtk.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/lldb/examples/python/lldbtk.py b/lldb/examples/python/lldbtk.py
index f1685c0..72fe91e 100644
--- a/lldb/examples/python/lldbtk.py
+++ b/lldb/examples/python/lldbtk.py
@@ -4,12 +4,8 @@ import lldb
import shlex
import sys
-try:
- from tkinter import *
- import tkinter.ttk as ttk
-except ImportError:
- from Tkinter import *
- import ttk
+from tkinter import *
+import tkinter.ttk as ttk
class ValueTreeItemDelegate(object):