File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66# -- Project information -----------------------------------------------------
77# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88
9+ import os
910import re
1011import time
12+ from urllib .request import urlretrieve
1113
1214project = 'EWMHlib'
1315year = time .strftime ("%Y" )
4244
4345# -- Copy the modules documentation ------------------------------------------
4446# https://stackoverflow.com/questions/66495200/is-it-possible-to-include-external-rst-files-in-my-documentation
45- from urllib .request import urlretrieve
46- import os
47-
4847urlretrieve (
4948 "https://raw.githubusercontent.com/kalmat/ewmhlib/master/README.md" ,
5049 "index.md"
Original file line number Diff line number Diff line change @@ -45,16 +45,6 @@ ignore = [
4545
4646 # TODO: Add and configure isort (I) first
4747 " RUF022" ,
48-
49- # TODO: Consider later
50- " UP031" , # printf-string-formatting
51- " RUF059" , # unused-unpacked-variable
52-
53- # TODO: Not autofixable, address in a separate PR !
54- " E722" ,
55- " E402" ,
56- " F401" ,
57- " ANN201" ,
5848]
5949# F401 would remove imports not marked as explicit re-exports, which may break API boundaries
6050extend-unsafe-fixes = [" F401" ]
You can’t perform that action at this time.
0 commit comments