This file contains hidden or 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
# (c)2020 Henrique Moreira -- fast Excel read-out | |
""" fastexcel.py script allows you to learn Excel openpyxl usage """ | |
# pylint: disable=unnecessary-comprehension, invalid-name | |
### Notes: | |
### unnecessary-comprehension, see: | |
### https://github.com/PyCQA/pylint/issues/3164 |
This file contains hidden or 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
# reindent.py -- Tim Peters, and H.Moreira | |
# pylint: disable=missing-function-docstring, trailing-whitespace, line-too-long, invalid-name, unused-argument | |
# Re-named to reindent.py and enhanced by Henrique Moreira, 01 Dec 2019. | |
# Released to the public domain, by Anshul Kanakia, 22 May 2019 as reindentv2.py | |
# Original code reindent.py released to the public domain, by Tim Peters, 03 October 2000. | |
# This version is modified to allow custom indent space values (not just 4 spaces). | |
"""reindent [-d][-r][-v] [ path ... ] |