Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TOOL] Address minor change in black formatter >= 24.1.0 #131

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions chatminer/chatparsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ def parse_file(self):
self._logger.info("Finished parsing raw messages.")

@abstractmethod
def _read_raw_messages_from_file(self):
...
def _read_raw_messages_from_file(self): ...

def _parse_raw_messages(self):
with logging_redirect_tqdm():
Expand All @@ -109,8 +108,7 @@ def _parse_raw_messages(self):
self.parsed_messages.append(parsed_mess)

@abstractmethod
def _parse_message(self, mess: Any) -> Optional[ParsedMessage]:
...
def _parse_message(self, mess: Any) -> Optional[ParsedMessage]: ...


class SignalParser(Parser):
Expand Down
Loading