Skip to content

Commit

Permalink
Discard changes to crates/ruff_python_formatter/tests/snapshots/forma…
Browse files Browse the repository at this point in the history
…t@expression__yield.py.snap
  • Loading branch information
MichaReiser committed Aug 25, 2023
1 parent 093e06a commit f770d9e
Showing 1 changed file with 0 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,18 +79,6 @@ def foo():
yield aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa + bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb + ccccccccccccccccccccccccccccccccccccccccccccccccccccccc
yield len(self.nodeseeeeeeeee), sum(
len(node.parents) for node in self.node_map.values()
)
a = (yield len(self.nodeseeeeeeeee), sum(
len(node.parents) for node in self.node_map.values()
))
a = yield (yield len(self.nodeseeeeeeeee), sum(
len(node.parents) for node in self.node_map.values()
))
yield ("Cache key will cause errors if used with memcached: %r " "(longer than %s)" % (
key,
MEMCACHE_MAX_KEY_LENGTH,
Expand Down Expand Up @@ -198,21 +186,6 @@ def foo():
+ ccccccccccccccccccccccccccccccccccccccccccccccccccccccc
)
yield len(self.nodeseeeeeeeee), sum(
len(node.parents) for node in self.node_map.values()
)
a = yield len(self.nodeseeeeeeeee), sum(
len(node.parents) for node in self.node_map.values()
)
a = yield (
yield (
len(self.nodeseeeeeeeee),
sum(len(node.parents) for node in self.node_map.values()),
)
)
yield (
"Cache key will cause errors if used with memcached: %r "
Expand Down

0 comments on commit f770d9e

Please sign in to comment.