Skip to content

Commit 27a8902

Browse files
committed
lint fixes
1 parent 9124dd8 commit 27a8902

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.flake8

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ max-line-length = 120
77
# D103 Missing docstring in public function
88
# D104 Missing docstring in public package
99
# D107 Missing docstring in __init__
10+
# W504 line break after binary operator
1011
# W606 'async' and 'await' are reserved keywords starting with Python 3.7
11-
ignore = D100, D101, D102, D103, D104, D107, W606
12+
ignore = D100, D101, D102, D103, D104, D107, W504, W606

unittesting/utils/reloader.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ def reload_package(pkg_name, dummy=True, verbose=True):
104104

105105
def reload_dependency(dependency_name, dummy=True, verbose=True):
106106
"""
107+
Reload a Package Control dependency.
108+
107109
Package Control dependencies aren't regular packages, so we don't want to
108110
call `sublime_plugin.unload_module` or `sublime_plugin.reload_plugin`.
109111
Instead, we manually unload all of the modules in the dependency and then

0 commit comments

Comments
 (0)