diff options
author | Damien George <damien@micropython.org> | 2022-04-20 16:01:11 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-04-20 16:01:11 +1000 |
commit | 71a64545a8d12edb730757673a728a3d56f225d5 (patch) | |
tree | 5a78f9863c3b9a650291532abb13dca39faac41b /tools/codeformat.py | |
parent | 707aaa350aee6e52dd0b9ee87e962aedad052081 (diff) |
tools/codeformat.py: Remove ports/unix/*.py from exclusion list.
These .py files were removed from the .gitignore in commit
3c2aa5ff93a3b12723c7ca794aa9c583891c349b
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools/codeformat.py')
-rwxr-xr-x | tools/codeformat.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/codeformat.py b/tools/codeformat.py index 04cce1d83..03a56d33d 100755 --- a/tools/codeformat.py +++ b/tools/codeformat.py @@ -62,8 +62,6 @@ PATHS = [ EXCLUSIONS = [ # STM32 build includes generated Python code. "ports/*/build*", - # gitignore in ports/unix ignores *.py, so also do it here. - "ports/unix/*.py", # not real python files "tests/**/repl_*.py", # needs careful attention before applying automatic formatting |