mirror of
https://github.com/enzet/map-machine.git
synced 2025-06-06 04:41:54 +02:00
Fix Pylint warnings.
This commit is contained in:
parent
bd1efbfe2c
commit
c3dfaf0604
18 changed files with 101 additions and 71 deletions
|
@ -35,7 +35,8 @@ def draw_element(options: argparse.Namespace) -> None:
|
|||
tags_description = options.area
|
||||
|
||||
tags: dict[str, str] = {
|
||||
x.split("=")[0]: x.split("=")[1] for x in tags_description.split(",")
|
||||
tag.split("=")[0]: tag.split("=")[1]
|
||||
for tag in tags_description.split(",")
|
||||
}
|
||||
scheme: Scheme = Scheme(workspace.DEFAULT_SCHEME_PATH)
|
||||
extractor: ShapeExtractor = ShapeExtractor(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue