diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-01-08 14:08:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 14:08:44 +0000 |
commit | 23a59d24ae34493c2e54e1601b2d3757df35095e (patch) | |
tree | 95bdd12088abb1c0a019d43a41ddfcfb092f8565 /.buildkite | |
parent | Allow running sendToDevice on workers (#9044) (diff) | |
download | synapse-23a59d24ae34493c2e54e1601b2d3757df35095e.tar.xz |
Run the linters on a consistent list of files (#9038)
We were running some linters on some files and some on others. Extract a common setting and use it everywhere.
Diffstat (limited to '.buildkite')
-rwxr-xr-x | .buildkite/scripts/create_postgres_db.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.buildkite/scripts/create_postgres_db.py b/.buildkite/scripts/create_postgres_db.py index df6082b0ac..956339de5c 100755 --- a/.buildkite/scripts/create_postgres_db.py +++ b/.buildkite/scripts/create_postgres_db.py @@ -15,6 +15,7 @@ # limitations under the License. import logging + from synapse.storage.engines import create_engine logger = logging.getLogger("create_postgres_db") |