mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-15 21:33:48 -05:00
[pyupgrade] synapse/ (#10348)
This PR is tantamount to running ``` pyupgrade --py36-plus --keep-percent-format `find synapse/ -type f -name "*.py"` ``` Part of #9744
This commit is contained in:
parent
7387d6f624
commit
95e47b2e78
29 changed files with 86 additions and 102 deletions
|
|
@ -90,8 +90,7 @@ def enumerate_leaves(node, depth):
|
|||
yield node
|
||||
else:
|
||||
for n in node.values():
|
||||
for m in enumerate_leaves(n, depth - 1):
|
||||
yield m
|
||||
yield from enumerate_leaves(n, depth - 1)
|
||||
|
||||
|
||||
P = TypeVar("P")
|
||||
|
|
|
|||
|
|
@ -138,7 +138,6 @@ def iterate_tree_cache_entry(d):
|
|||
"""
|
||||
if isinstance(d, TreeCacheNode):
|
||||
for value_d in d.values():
|
||||
for value in iterate_tree_cache_entry(value_d):
|
||||
yield value
|
||||
yield from iterate_tree_cache_entry(value_d)
|
||||
else:
|
||||
yield d
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue