Skip to content

Commit

Permalink
Fix flake8 error in Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mferrera committed Dec 5, 2023
1 parent d199333 commit 61a3a2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fmu/tools/qcproperties/qcproperties.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _adjust_id_if_duplicate(self, run_id: str) -> str:
check_id = run_id
count = 0
while check_id in self._ids:
check_id = f"{run_id}({count+1})"
check_id = f"{run_id}({count + 1})"
count += 1
return check_id

Expand Down

0 comments on commit 61a3a2f

Please sign in to comment.