forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Python] Improve Python consistency: "variable in function should be …
…lowercase" (N806) The repo contains roughly 80 Python scripts. "snake_case" naming is used for local variables in all those scripts. This is the form recommended by the PEP 8 naming recommendations (Python Software Foundation) and typically associated with idiomatic Python code. However, in nine of the 80 scripts there were at least one instance of "camelCase" naming prior to this commit. This commit improves consistency in the Python code base by making sure that these nine remaining files follow the variable naming convention used for Python code in the project. References: * PEP 8: https://www.python.org/dev/peps/pep-0008/ * pep8-naming: https://pypi.python.org/pypi/pep8-naming
- Loading branch information
1 parent
659811e
commit e33f174
Showing
11 changed files
with
535 additions
and
535 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
Oops, something went wrong.