Skip to content

Commit

Permalink
style: Fix multi-value-repeated-key-literal (F601) (Pylint W0109) (OS…
Browse files Browse the repository at this point in the history
  • Loading branch information
echoix authored Oct 20, 2024
1 parent 7fbaa7e commit 884fc6f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion gui/wxpython/gmodeler/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2285,7 +2285,6 @@ def _processComments(self):
"size": size,
"text": text,
"id": int(node.get("id", -1)),
"text": text,
}
)

Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ ignore = [
"F401", # unused-import
"F403", # undefined-local-with-import-star
"F405", # undefined-local-with-import-star-usage
"F601", # multi-value-repeated-key-literal
"F811", # redefined-while-unused
"F821", # undefined-name
"F822", # undefined-export
Expand Down
2 changes: 1 addition & 1 deletion python/grass/script/raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def raster_history(map, overwrite=False, env=None):
"Unable to write history for <%(map)s>. "
"Raster map <%(map)s> not found in current mapset."
)
% {"map": map, "map": map}
% {"map": map}
)
return False

Expand Down

0 comments on commit 884fc6f

Please sign in to comment.