Skip to content

Commit

Permalink
git commit -m "Fix formatting issues in parsetab.py"
Browse files Browse the repository at this point in the history
  • Loading branch information
rohannallamadge committed Oct 20, 2024
1 parent 084d246 commit 53e86f9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ disable=raw-checker-failed,
expression-not-assigned,
self-assigning-variable,
unspecified-encoding,
#no-self-use,
no-self-use,
inconsistent-return-statements,
invalid-name,
broad-except,
Expand Down Expand Up @@ -652,6 +652,6 @@ min-public-methods=1

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
overgeneral-exceptions=BaseException,Exception


1 change: 1 addition & 0 deletions python/grass/jupyter/map.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ def show(self):
Image,
display, # pylint: disable=import-outside-toplevel
)

Check failure on line 195 in python/grass/jupyter/map.py

View workflow job for this annotation

GitHub Actions / Python Code Quality Checks (ubuntu-22.04)

Ruff (W293)

python/grass/jupyter/map.py:195:1: W293 Blank line contains whitespace
display(Image(self._filename))

def save(self, filename):
Expand Down
1 change: 1 addition & 0 deletions python/grass/jupyter/map3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,4 +236,5 @@ def show(self):
Image,
display,
) # pylint: disable=import-outside-toplevel

Check failure on line 239 in python/grass/jupyter/map3d.py

View workflow job for this annotation

GitHub Actions / Python Code Quality Checks (ubuntu-22.04)

Ruff (W293)

python/grass/jupyter/map3d.py:239:1: W293 Blank line contains whitespace
display(Image(self._filename))

0 comments on commit 53e86f9

Please sign in to comment.