Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev_requirements/requirements-linting.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# pip-compile-multi
#
astroid==3.2.4
astroid==3.3.3
# via pylint
dill==0.3.8
# via pylint
Expand All @@ -15,7 +15,7 @@ mccabe==0.7.0
# via pylint
platformdirs==4.2.1
# via pylint
pylint==3.2.7
pylint==3.3.0
# via -r dev_requirements/requirements-linting.in
tomlkit==0.12.4
# via pylint
4 changes: 2 additions & 2 deletions src/ebdamame/docxtableconverter.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def _enhance_list_view(table: Table, row_offset: int) -> List[_EnhancedDocxTable
return result

# I see that there are quite a few local variables, but honestly see no reason to break it down any further.
# pylint:disable=too-many-arguments
# pylint:disable=too-many-arguments, too-many-positional-arguments
def _handle_single_table(
self,
table: Table,
Expand Down Expand Up @@ -281,7 +281,7 @@ def _handle_single_table(
)

# see above boolean_outcome and subsequent_step_number could be ignored iff schemes of *-numbers are always the same
# pylint:disable=too-many-locals
# pylint:disable=too-many-locals, too-many-positional-arguments
def _handle_single_table_star_exception(
self,
table: Table,
Expand Down