mirror of
https://github.com/ParticulateFlow/LPP.git
synced 2025-12-08 06:37:46 +00:00
fix Tkinter vs tkinter import
This commit is contained in:
@ -12,7 +12,10 @@
|
||||
|
||||
from __future__ import absolute_import
|
||||
import sys, os, subprocess, re, glob
|
||||
from tkinter import *
|
||||
try:
|
||||
from Tkinter import *
|
||||
except ImportError:
|
||||
from tkinter import *
|
||||
|
||||
oneline = "Animate a series of image files"
|
||||
|
||||
|
||||
@ -13,7 +13,10 @@
|
||||
from __future__ import absolute_import
|
||||
import sys, os, subprocess, re, glob
|
||||
from math import *
|
||||
from tkinter import *
|
||||
try:
|
||||
from Tkinter import *
|
||||
except ImportError:
|
||||
from tkinter import *
|
||||
import Pmw
|
||||
from PIL import Image
|
||||
|
||||
|
||||
@ -12,7 +12,10 @@
|
||||
|
||||
from __future__ import absolute_import
|
||||
import sys, re, glob, time
|
||||
from tkinter import *
|
||||
try:
|
||||
from Tkinter import *
|
||||
except ImportError:
|
||||
from tkinter import *
|
||||
|
||||
oneline = "Plot multiple vectors from a data set"
|
||||
|
||||
|
||||
@ -11,7 +11,10 @@
|
||||
# Imports and external programs
|
||||
|
||||
from __future__ import absolute_import
|
||||
from tkinter import *
|
||||
try:
|
||||
from Tkinter import *
|
||||
except ImportError:
|
||||
from tkinter import *
|
||||
import types
|
||||
|
||||
oneline = "VCR-style GUI for 3d interactive OpenGL visualization"
|
||||
|
||||
Reference in New Issue
Block a user