From d928f32661f606ec463e4c7c5349e3edf719a213 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Fri, 30 Dec 2022 07:47:53 +0000 Subject: [PATCH] Format Python code with psf/black push --- cogs/gpt_3_commands_and_converser.py | 4 +++- cogs/image_prompt_optimizer.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/cogs/gpt_3_commands_and_converser.py b/cogs/gpt_3_commands_and_converser.py index 5602955..014ce63 100644 --- a/cogs/gpt_3_commands_and_converser.py +++ b/cogs/gpt_3_commands_and_converser.py @@ -65,7 +65,9 @@ class GPT3ComCon(commands.Cog, name="GPT3ComCon"): # Attempt to read a conversation starter text string from the file. with conversation_file_path.open("r") as f: self.CONVERSATION_STARTER_TEXT = f.read() - print(f"Conversation starter text loaded from {conversation_file_path}.") + print( + f"Conversation starter text loaded from {conversation_file_path}." + ) assert self.CONVERSATION_STARTER_TEXT is not None except Exception: diff --git a/cogs/image_prompt_optimizer.py b/cogs/image_prompt_optimizer.py index 428b8ba..bd19a4f 100644 --- a/cogs/image_prompt_optimizer.py +++ b/cogs/image_prompt_optimizer.py @@ -34,7 +34,9 @@ class ImgPromptOptimizer(commands.Cog, name="ImgPromptOptimizer"): self.deletion_queue = deletion_queue try: - image_pretext_path = self.converser_cog.data_path / "image_optimizer_pretext.txt" + image_pretext_path = ( + self.converser_cog.data_path / "image_optimizer_pretext.txt" + ) # Try to read the image optimizer pretext from # the file system with image_pretext_path.open("r") as file: