Skip to content

Commit

Permalink
fixed untyped defs in cloudinit analyze
Browse files Browse the repository at this point in the history
  • Loading branch information
abdulganiyy authored and abdulganiyy committed Oct 26, 2024
1 parent dff9d52 commit 3cb1025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudinit/analyze/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def event_duration(start: Dict[str, Union[str, float]], finish: Dict[str, Union[
return delta_seconds(event_datetime(start), event_datetime(finish))


def event_record(start_timedatetime.datetime, start: Dict[str, Union[str, float]], finish: Dict[str, Union[str, float]]) -> Dict[str, Union[str, float]]:
def event_record(start_time:datetime.datetime, start: Dict[str, Union[str, float]], finish: Dict[str, Union[str, float]]) -> Dict[str, Union[str, float]]:
record = finish.copy()
record.update(
{
Expand Down

0 comments on commit 3cb1025

Please sign in to comment.