Skip to content

Commit

Permalink
Merge pull request #71 from 23pointsNorth/patch-2
Browse files Browse the repository at this point in the history
Remove empty lines on no verbosity
  • Loading branch information
SimonBlanke committed May 23, 2023
2 parents 19cbb1c + a6ac25b commit bf3a453
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hyperactive/hyperactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ def add_search(
def _print_info(self):
print_res = PrintResults(self.opt_pros, self.verbosity)

for _ in range(len(self.opt_pros)):
print("")
if self.verbosity:
for _ in range(len(self.opt_pros)):
print("")

for results in self.results_list:
nth_process = results["nth_process"]
Expand Down

0 comments on commit bf3a453

Please sign in to comment.