Skip to content

Commit

Permalink
modified developer guide code examples according with pep8 standard
Browse files Browse the repository at this point in the history
  • Loading branch information
GreshmaShaji committed Oct 15, 2024
1 parent bdb43b0 commit 447eedf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/developer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ Example for an application, which should reside under ``src/modules/applications
:param config: The configuration dictionary
:param iter_count: The iteration count
:returns: The generated problem.
:returns: The generated problem
"""
size = config['size']
Expand Down Expand Up @@ -224,7 +224,7 @@ Example for an application, which should reside under ``src/modules/applications
Evaluates the solution.
:param solution: The solution to evaluate
:return: A tuple containing the evaluation metric and the time taken for evaluation.
:return: A tuple containing the evaluation metric and the time taken for evaluation
"""
start = start_time_measurement()
Expand All @@ -236,8 +236,8 @@ Example for an application, which should reside under ``src/modules/applications
"""
Saves the application state.
:param path: The path where the application state should be saved.
:param iter_count: The iteration count.
:param path: The path where the application state should be saved
:param iter_count: The iteration count
:returns:None
"""
save_your_application(self.application, f"{path}/application.txt")
Expand Down

0 comments on commit 447eedf

Please sign in to comment.