Skip to content
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.

Commit

Permalink
PEP257 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Oct 19, 2015
1 parent 18efcfc commit 864a97b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
6 changes: 1 addition & 5 deletions color_scheme_editor.py
Expand Up @@ -81,7 +81,6 @@ def load_resource(resource, binary=False):


class ColorSchemeEditorCommand(sublime_plugin.ApplicationCommand):

"""Color scheme editor command."""

def init_settings(self, action, select_theme):
Expand Down Expand Up @@ -179,7 +178,6 @@ def run(self, action=None, select_theme=None, live_edit=None):


class GetColorSchemeFilesCommand(sublime_plugin.WindowCommand, PackageSearch):

"""Get color scheme files."""

def on_select(self, value, settings):
Expand Down Expand Up @@ -220,7 +218,6 @@ def run(self, **kwargs):


class ColorSchemeEditorLogCommand(sublime_plugin.WindowCommand):

"""Color scheme editor log command."""

def run(self):
Expand All @@ -232,7 +229,6 @@ def run(self):


class ColorSchemeClearTempCommand(sublime_plugin.ApplicationCommand):

"""Color scheme editor clear temp folder command."""

def run(self):
Expand Down Expand Up @@ -281,7 +277,7 @@ def on_rm_error(func, path, exc_info):

import stat

excvalue = exc_info[1]
# excvalue = exc_info[1]
if func in (rmdir, unlink):
chmod(path, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO) # 0777
try:
Expand Down
1 change: 0 additions & 1 deletion lib/package_search.py
Expand Up @@ -155,7 +155,6 @@ def get_packages():


class PackageSearch(object):

"""Search packages."""

def pre_process(self, **kwargs):
Expand Down

0 comments on commit 864a97b

Please sign in to comment.