Skip to content

Commit

Permalink
Unconstrain pylint and fix newly revealed issues (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
akosthekiss authored Dec 16, 2024
1 parent a54615f commit 8bb2096
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ disable=
too-many-branches,
too-many-instance-attributes,
too-many-locals,
too-many-positional-arguments,
too-many-return-statements,
too-many-statements,
unspecified-encoding,
Expand Down
5 changes: 2 additions & 3 deletions src/fuzzinator/ui/tui/table.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016-2023 Renata Hodovan, Akos Kiss.
# Copyright (c) 2016-2024 Renata Hodovan, Akos Kiss.
#
# Licensed under the BSD 3-Clause License
# <LICENSE.rst or https://opensource.org/licenses/BSD-3-Clause>.
Expand Down Expand Up @@ -585,8 +585,7 @@ def sort_reverse_none_last(a, b):
else:
r = data

for d in r:
yield d
yield from r

def requery(self, data, offset=0):
kwargs = {'sort': (self.sort_field, self.sort_reverse)}
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ usedevelop = true
[testenv:lint]
deps =
pycodestyle
pylint<3 # FIXME: experiencing fatal error (astroid-error) with pylint 3.0.0-3.0.2
pylint
pytest
commands =
pylint src/fuzzinator tests
Expand Down

0 comments on commit 8bb2096

Please sign in to comment.