Skip to content

Commit 41ca3c3

Browse files
committed
Drop unused var, import
1 parent 6a67953 commit 41ca3c3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

osg-test-log-viewer

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ from six.moves.tkinter import *
77
from six.moves import tkinter_scrolledtext as ScrolledText
88
from six.moves import tkinter_font as tkFont
99
from six.moves import urllib
10-
import os
1110
import re
12-
import subprocess
1311
import sys
1412

1513

@@ -193,7 +191,7 @@ def main():
193191
logdata = load_logdata_from_url(logpath)
194192
root = Tk()
195193
root.wm_title("osg-test log viewer: " + logpath)
196-
app = Application(root, logpath, logdata)
194+
Application(root, logpath, logdata)
197195
root.mainloop()
198196

199197
if __name__ == '__main__':

0 commit comments

Comments
 (0)