move import to top of file. remove unused imports.

This commit is contained in:
Alan Hamlett 2015-02-23 22:20:27 -08:00
parent 308187b2ed
commit e4fe604a93
1 changed files with 5 additions and 6 deletions

View File

@ -17,8 +17,8 @@ import platform
import sys
import time
import threading
import uuid
from os.path import expanduser, dirname, basename, realpath, isfile, join, exists
import webbrowser
from os.path import expanduser, dirname, basename, realpath, join, exists
# globals
ACTION_FREQUENCY = 2
@ -44,7 +44,8 @@ from wakatime import parseConfigFile
try:
import ssl
import socket
socket.ssl
assert ssl
assert socket.ssl
HAS_SSL = True
except (ImportError, AttributeError):
from subprocess import Popen
@ -246,10 +247,8 @@ class WakatimeListener(sublime_plugin.EventListener):
def on_modified(self, view):
handle_action(view)
import webbrowser
class WakatimeDashboardCommand(sublime_plugin.ApplicationCommand):
def run(self):
webbrowser.open_new_tab('https://wakatime.com/dashboard')