diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-07-08 12:53:33 +0100 |
---|---|---|
committer | Amber Brown <hawkowl@atleastfornow.net> | 2019-07-08 21:53:33 +1000 |
commit | 589d43d9cd80d6a780f1bf8b99ae396efe23aae8 (patch) | |
tree | 7740df7727ddef3c6ecd8cbea96792201c349b66 | |
parent | Add default push rule to ignore reactions (#5623) (diff) | |
download | synapse-589d43d9cd80d6a780f1bf8b99ae396efe23aae8.tar.xz |
Add a few more common environment directory names to black exclusion (#5630)
* Add a few more common environment directory names to black exclusion * Add changelog
-rw-r--r-- | changelog.d/5630.misc | 1 | ||||
-rw-r--r-- | pyproject.toml | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/changelog.d/5630.misc b/changelog.d/5630.misc new file mode 100644 index 0000000000..f112d873eb --- /dev/null +++ b/changelog.d/5630.misc @@ -0,0 +1 @@ +Add some more common python virtual-environment paths to the black exclusion list. diff --git a/pyproject.toml b/pyproject.toml index ec23258da8..ef329aab41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,6 +39,8 @@ exclude = ''' | \.git # root of the project | \.tox | \.venv + | \.env + | env | _build | _trial_temp.* | build |