diff options
author | Jonathan de Jong <jonathan@automatia.nl> | 2021-07-19 16:28:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-19 15:28:05 +0100 |
commit | 95e47b2e782b5e7afa5fd2afd1d0ea7745eaac36 (patch) | |
tree | 790fadd03146a98be794c3d26b34224241a26271 /synapse/storage/prepare_database.py | |
parent | Remove unused `events_by_room` (#10421) (diff) | |
download | synapse-95e47b2e782b5e7afa5fd2afd1d0ea7745eaac36.tar.xz |
[pyupgrade] `synapse/` (#10348)
This PR is tantamount to running ``` pyupgrade --py36-plus --keep-percent-format `find synapse/ -type f -name "*.py"` ``` Part of #9744
Diffstat (limited to 'synapse/storage/prepare_database.py')
-rw-r--r-- | synapse/storage/prepare_database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/prepare_database.py b/synapse/storage/prepare_database.py index 82a7686df0..61392b9639 100644 --- a/synapse/storage/prepare_database.py +++ b/synapse/storage/prepare_database.py @@ -639,7 +639,7 @@ def get_statements(f: Iterable[str]) -> Generator[str, None, None]: def executescript(txn: Cursor, schema_path: str) -> None: - with open(schema_path, "r") as f: + with open(schema_path) as f: execute_statements_from_stream(txn, f) |