Skip to content

Commit

Permalink
checks: Fix E402 Flake8 in for wxGUI Sphinx doc (#4391)
Browse files Browse the repository at this point in the history
This fixes Flake8 E402 (Module level import not at top of file) for Sphinx documentation generator configuration script by removing import path manipulation block which was not properly working anyway.
  • Loading branch information
arohanajit authored Sep 26, 2024
1 parent edea810 commit c502c1c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ per-file-ignores =
doc/python/m.distance.py: E501
doc/gui/wxpython/example/dialogs.py: F401
gui/scripts/d.wms.py: E501
gui/wxpython/docs/wxgui_sphinx/conf.py: E402, W291
gui/wxpython/gcp/manager.py: E722
gui/wxpython/gui_core/*: E722
gui/wxpython/gui_core/dialogs.py: E722
Expand Down
12 changes: 0 additions & 12 deletions gui/wxpython/docs/wxgui_sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,9 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys
import os
from datetime import date
import string
from shutil import copy

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
if not os.getenv("GISBASE"):
sys.exit("GISBASE not defined")
sys.path.insert(
0, os.path.abspath(os.path.join(os.environ["GISBASE"], "etc", "python", "grass"))
)

from grass.script import core

footer_tmpl = string.Template(
Expand Down

0 comments on commit c502c1c

Please sign in to comment.