diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-12-21 13:05:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-21 13:05:21 -0500 |
commit | 7010a3d0151b88b3a9a7451201eaf9c5bbe48d64 (patch) | |
tree | b5214edd8759b4334451d10a36fe7835c58fc76b /synapse | |
parent | Bump minimum PyYAML to 3.13. (#14720) (diff) | |
download | synapse-7010a3d0151b88b3a9a7451201eaf9c5bbe48d64.tar.xz |
Switch to ruff instead of flake8. (#14633)
ruff is a flake8-compatible Python linter written in Rust. It supports the flake8 plugins that we use and is significantly faster in testing.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/config/_base.pyi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/config/_base.pyi b/synapse/config/_base.pyi index 01ea2b4dab..bd265de536 100644 --- a/synapse/config/_base.pyi +++ b/synapse/config/_base.pyi @@ -1,3 +1,5 @@ +from __future__ import annotations + import argparse from typing import ( Any, |