Skip to content

Commit

Permalink
docx4
Browse files Browse the repository at this point in the history
  • Loading branch information
Dariiiii committed Jul 3, 2024
1 parent 0a097d4 commit 5e402e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/main/checks/report_checks/main_character_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ class ReportMainCharacterCheck(BaseReportCriterion):
id = "main_character_check"
priority = True

def __init__(self, file_info):
def __init__(self, file_info, tables_count_to_verify=8):
super().__init__(file_info)
self.headers = []
self.first_check_list = None
self.second_check_list = None
self.tables_count_to_verify = 8
self.tables_count_to_verify = tables_count_to_verify

def late_init(self):
self.headers = self.file.make_headers(self.file_type['report_type'])
Expand Down

0 comments on commit 5e402e7

Please sign in to comment.