This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
[tracker] pyupgrade --py36-plus
#9744
Labels
T-Task
Refactoring, removal, replacement, enabling or disabling functionality, other engineering tasks.
This is a tracker issue for running and PR-ing automated refactors using pyupgrade, per #9131.
I'll do this in the following changes:
# -*- coding: utf-8 -*-
lines (Remove redundant "coding: utf-8" lines #9786)pyupgrade
the codebase with--keep-precent-format
tests/
([pyupgrade]tests/
#10347)synapse/
([pyupgrade]synapse/
#10348)pyupgrade
without--keep-precent-format
(#XXXX)Overall Extra Info
Some common changes from
pyupgrade
:%
-formatting to.format
(or f-strings if non-trivial)coding: utf-8
file header (not needed since python 3)typing.TypedDict("A")
class instantiations toclass A(TypedDict)
The text was updated successfully, but these errors were encountered: