Skip to content

Commit

Permalink
Merge pull request #144 from regulaforensics/bugfix/add-percent-value…
Browse files Browse the repository at this point in the history
…-to-object-init

[SP-17476] Add lacked object init parameter
  • Loading branch information
KirylKovaliov authored Oct 4, 2024
2 parents 91444c4 + 9a41332 commit 22a9dab
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ class RawAuthenticityCheckResultItem(AuthenticityCheckResultItem):
attribute_map = copy(AuthenticityCheckResultItem.attribute_map)
attribute_map["raw"] = "raw"

def __init__(self, type=0, element_result=None, element_diagnose=None, raw=None, local_vars_configuration=None):
super().__init__(type, element_result, element_diagnose, local_vars_configuration)
def __init__(self, type=0, element_result=None, element_diagnose=None, raw=None, percent_value=None, local_vars_configuration=None):
super().__init__(type, element_result, element_diagnose, percent_value, local_vars_configuration)
self.__raw = raw

@property
Expand Down

0 comments on commit 22a9dab

Please sign in to comment.