Skip to content

Commit

Permalink
fix precommit
Browse files Browse the repository at this point in the history
Signed-off-by: rohitthakur2590 <[email protected]>
  • Loading branch information
rohitthakur2590 committed Aug 21, 2023
1 parent 9f3d495 commit 52b3d33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/action/git_publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def _commit(self: T) -> None:
)
self._run_command(command=command)

def _tag(self):
def _tag(self: T) -> None:
"""Create a tag object."""
command_parts = list(self._base_command)
message = self._task.args["tag"].get("message")
Expand Down Expand Up @@ -276,9 +276,9 @@ def run(
self._commit,
)
if self._task.args.get("tag"):
steps += (self._tag,)
steps = steps + (self._tag,)

steps += (
steps = steps + (
self._push,
self._remove_repo,
)
Expand Down

0 comments on commit 52b3d33

Please sign in to comment.