0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-29 21:19:06 +02:00
synapse/changelog.d/8344.misc
Patrick Cloke 8a4a4186de
Simplify super() calls to Python 3 syntax. (#8344)
This converts calls like super(Foo, self) -> super().

Generated with:

    sed -i "" -Ee 's/super\([^\(]+\)/super()/g' **/*.py
2020-09-18 09:56:44 -04:00

1 line
45 B
Text

Simplify `super()` calls to Python 3 syntax.