Skip to content

Commit

Permalink
Remove noqa, rename param
Browse files Browse the repository at this point in the history
  • Loading branch information
pederhan committed Dec 12, 2024
1 parent ae7e432 commit 9795ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mreg_cli/api/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def clean_timestamp(self) -> str:
"""Clean up the timestamp for output."""
return self.timestamp.strftime("%Y-%m-%d %H:%M:%S")

def msg(self, basename: str) -> str: # noqa: ARG002 # arg might be used in the future
def msg(self, _basename: str) -> str:
"""Attempt to make a history item human readable."""
msg = ""
action = self.action
Expand Down

0 comments on commit 9795ac4

Please sign in to comment.