Skip to content

Commit

Permalink
Fixes Pylint error C0301 by adjusting indentation
Browse files Browse the repository at this point in the history
Line too long
  • Loading branch information
cr2007 committed Jun 23, 2024
1 parent 6150378 commit ae2d860
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cambai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,9 @@ def create_translation(
return response.json()


def get_translation_result(self, /, run_id: int, *, save_to_file: bool = False) -> TranslationResult:
def get_translation_result(
self, /, run_id: int, *, save_to_file: bool = False
) -> TranslationResult:

url: str = self.create_api_endpoint(f"translation_result/{run_id}")

Expand Down

0 comments on commit ae2d860

Please sign in to comment.