Skip to content

Commit

Permalink
changed bool flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjalling-dejong committed Dec 12, 2024
1 parent 08922c0 commit af57075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fm2prof/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def set_number_of_iterations(self, n: int) -> None:
raise ValueError(err_msg)
self.number_of_iterations = n

def set_intro(self, *, flag: bool = True) -> None:
def set_intro(self, flag: bool = True) -> None: # noqa: FBT001, FBT002
"""Indicate intro section for formatter."""
self._intro = flag

Expand Down

0 comments on commit af57075

Please sign in to comment.