mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Add missing qt dep to mypy/pylint
This commit is contained in:
parent
1e573de63a
commit
c45c1a354c
1 changed files with 6 additions and 1 deletions
|
@ -230,7 +230,11 @@ pub fn check_python(build: &mut Build) -> Result<()> {
|
|||
"python",
|
||||
"tools",
|
||||
],
|
||||
deps: inputs![glob!["{pylib,ftl,qt}/**/*.{py,pyi}"], ":pylib/anki"],
|
||||
deps: inputs![
|
||||
glob!["{pylib,ftl,qt}/**/*.{py,pyi}"],
|
||||
":pylib/anki",
|
||||
":qt/aqt"
|
||||
],
|
||||
},
|
||||
)?;
|
||||
|
||||
|
@ -285,6 +289,7 @@ fn add_pylint(build: &mut Build) -> Result<()> {
|
|||
pylint_ini: inputs![".pylintrc"],
|
||||
deps: inputs![
|
||||
":pylint/anki",
|
||||
":qt/aqt",
|
||||
glob!("{pylib/tools,ftl,qt,python,tools}/**/*.py")
|
||||
],
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue