File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed
Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,6 @@ repos:
1515 args : [--ignore-missing-imports, --no-strict-optional]
1616 additional_dependencies :
1717 - types-setuptools
18- - repo : https://github.com/PyCQA/pylint
19- rev : v3.3.3
20- hooks :
21- - id : pylint
22- stages : [commit]
23- args :
24- - --score=n
25- - --disable=import-error,arguments-differ,too-many-locals
2618 - repo : https://github.com/PyCQA/pydocstyle
2719 rev : 6.3.0
2820 hooks :
Original file line number Diff line number Diff line change 2323
2424import gramps .gen .lib as lib
2525from gramps .gen .plug import CATEGORY_DRAW , CATEGORY_GRAPHVIZ , CATEGORY_TEXT
26- from pkg_resources import resource_filename
26+ from pkg_resources import resource_filename # type: ignore[import-untyped]
2727
2828from ._version import __version__ as VERSION
2929
136136# depending on whether needed dependencies are available.
137137try :
138138 import gi
139- gi .require_version ('Gtk' , '3.0' )
139+
140+ gi .require_version ("Gtk" , "3.0" )
140141
141142 REPORT_FILTERS = ["gv" , "dot" , "gvpdf" ]
142143 REPORT_DEFAULTS = {
You can’t perform that action at this time.
0 commit comments