Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalstapinski committed Feb 22, 2024
1 parent 3bb7a87 commit 25354cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
12 changes: 4 additions & 8 deletions redispatcher/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
class RedispatcherException(Exception):
...
class RedispatcherException(Exception): ...


class UndefinedQueue(RedispatcherException):
...
class UndefinedQueue(RedispatcherException): ...


class UndefinedMessage(RedispatcherException):
...
class UndefinedMessage(RedispatcherException): ...


class InvalidConfig(RedispatcherException):
...
class InvalidConfig(RedispatcherException): ...
3 changes: 1 addition & 2 deletions test/fixtures/consumers.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ class Message(BaseConsumer.Message):
id: int
text: str

async def process_message(self, message: Message, headers: BaseConsumer.Headers):
...
async def process_message(self, message: Message, headers: BaseConsumer.Headers): ...


class ConsumerTwo(BaseConsumer):
Expand Down

0 comments on commit 25354cb

Please sign in to comment.