Skip to content

Commit

Permalink
Fixing typo in error init function
Browse files Browse the repository at this point in the history
Changing "ini" to "init"

Signed-off-by: Kevin Sun <[email protected]>
Reviewed-by: Ashley E Desimone <[email protected]>
  • Loading branch information
kevinsun49 authored and ashedesimone committed Nov 27, 2023
1 parent 02bee5d commit 04fe54b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edkrepo/common/edkrepo_exception.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __init__(self, message):
super().__init__(message, 117)

class EdkrepoWorkspaceCorruptException(EdkrepoException):
def __ini__(self, message):
def __init__(self, message):
super().__init__(message, 118)

class EdkrepoWarningException(EdkrepoException):
Expand Down

0 comments on commit 04fe54b

Please sign in to comment.