Skip to content

Commit

Permalink
Reformatted configuration.py according to black and updated Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
alainzhiyanov committed Aug 22, 2023
1 parent 116b787 commit b92dda8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ isort:

.PHONY: black
black:
poetry run black .
poetry run black --exclude '/replication/' .

.PHONY: darglint
darglint:
Expand Down
6 changes: 4 additions & 2 deletions pynguin/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,13 @@ class CodaMosaConfiguration:
"""The OpenAI Model to use for completions"""

model_base_url: str = ""
"""The base url used to interact with the model. Put together, model_base_url and model_relative_url describe
"""The base url used to interact with the model.
Put together, model_base_url and model_relative_url describe
the url for the model"""

model_relative_url: str = ""
"""The relative url used to interact with the model. Put together, model_base_url and model_relative_url describe
"""The relative url used to interact with the model.
Put together, model_base_url and model_relative_url describe
the url for the model"""

max_plateau_len: int = 25
Expand Down

0 comments on commit b92dda8

Please sign in to comment.