Skip to content

Commit

Permalink
delete bracket from ifs
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchlak committed Oct 9, 2024
1 parent 21dc4d0 commit e000500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plotai/plotai.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ def __init__(self, *args, **kwargs):
def make(self, prompt):
p = Prompt(prompt, self.df, self.x, self.y, self.z)

if(self.verbose):
if self.verbose:
Logger().log({"title": "Prompt", "details": p.value})

response = ChatGPT(model=self.model_version).chat(p.value)

if(self.verbose):
if self.verbose:
Logger().log({"title": "Response", "details": response})

executor = Executor()
Expand Down

0 comments on commit e000500

Please sign in to comment.