Skip to content

Commit

Permalink
Fix pylint extra disable
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner authored and renovate[bot] committed Dec 5, 2023
1 parent 36e4525 commit 9cf6efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tilecloud/store/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_one(self, tile: Tile) -> Tile:

def list(self) -> Iterator[Tile]:
count = 0
while True: # pylint: disable=too-many-nested-blocks
while True:
try:
logger.debug(
"Wait for new tiles, group name: %s, consumer name: %s, streams: %s, count: 1, "
Expand Down

0 comments on commit 9cf6efc

Please sign in to comment.