Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 179ed36

Browse files
committed
Remove further "-contrib-" references
1 parent eb0ed98 commit 179ed36

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Before using this plugin, you must ensure that `mypy` is installed on your syste
2525
### Linter configuration
2626
In order for `mypy` to be executed by SublimeLinter, you must ensure that its path is available to SublimeLinter. Before going any further, please read and follow the steps in [“Finding a linter executable”](http://sublimelinter.readthedocs.org/en/latest/troubleshooting.html#finding-a-linter-executable) through “Validating your PATH” in the documentation.
2727

28-
Once you have installed and configured `mypy`, you can proceed to install the SublimeLinter-contrib-mypy plugin, if it is not yet installed.
28+
Once you have installed and configured `mypy`, you can proceed to install the SublimeLinter-mypy plugin, if it is not yet installed.
2929

3030
### Plugin installation
3131
Please use [Package Control][pc] to install the linter plugin. This will ensure that the plugin will be updated when new versions are available. If you want to install from source so you can modify the source code, you probably know what you are doing so we won’t cover that here.

linter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def plugin_unloaded():
202202
try:
203203
from package_control import events
204204

205-
if events.remove('SublimeLinter-contrib-mypy'):
205+
if events.remove('SublimeLinter-mypy'):
206206
logger.info("Cleanup temporary directories.")
207207
_cleanup_tmpdirs()
208208

messages/install.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
SublimeLinter-contrib-mypy
2-
-------------------------------
1+
SublimeLinter-mypy
2+
------------------
33
This linter plugin for SublimeLinter provides an interface to mypy.
44

55
** IMPORTANT! **

tests/test_regex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import importlib
55

66
# Damn you dash separated module names!!!
7-
LinterModule = importlib.import_module('SublimeLinter-contrib-mypy.linter')
7+
LinterModule = importlib.import_module('SublimeLinter-mypy.linter')
88
Linter = LinterModule.Mypy
99
regex = Linter.regex
1010

0 commit comments

Comments
 (0)