-
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1833 from timbrel/mypy-nits
- Loading branch information
Showing
5 changed files
with
56 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
|
||
MYPY = False | ||
if MYPY: | ||
# Use LineNo, ColNo for 1-based line column counting (like git or `window.open_file`), | ||
# use Row, Col for 0-based counting like Sublime's `view.rowcol`! | ||
LineNo = int | ||
ColNo = int | ||
Row = int | ||
Col = int | ||
# Use LineNo, ColNo for 1-based line column counting (like git or `window.open_file`), | ||
# use Row, Col for 0-based counting like Sublime's `view.rowcol`! | ||
LineNo = int | ||
ColNo = int | ||
Row = int | ||
Col = int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters