Geometry: Fix pep8.

setup.py
Pierre-Antoine Rouby 2024-05-13 14:45:59 +02:00
parent 2d17d8cfe4
commit e6c08cb4e4
2 changed files with 5 additions and 2 deletions

View File

@ -68,7 +68,10 @@ class GeometryTranslate(MainTranslate):
self._sub_dict["lm_dict"] = { self._sub_dict["lm_dict"] = {
"1": _translate("Geometry", "the first guide-line"), "1": _translate("Geometry", "the first guide-line"),
"2": _translate("Geometry", "the second guide-line"), "2": _translate("Geometry", "the second guide-line"),
"3": _translate("Geometry", "the means between the two guide-lines"), "3": _translate(
"Geometry",
"the means between the two guide-lines"
),
} }
self._sub_dict["r_lm_dict"] = {} self._sub_dict["r_lm_dict"] = {}

View File

@ -295,7 +295,7 @@ class GeometryWindow(PamhyrWindow):
data = { data = {
"step": dlg.space_step, "step": dlg.space_step,
"limites": [dlg.begin_cs, dlg.end_cs], "limites": [dlg.begin_cs, dlg.end_cs],
"origin" : dlg.origin, "origin": dlg.origin,
"directrices": [dlg.begin_dir, dlg.end_dir], "directrices": [dlg.begin_dir, dlg.end_dir],
"lplan": dlg.lplan, "lplan": dlg.lplan,
"lm": dlg.lm, "lm": dlg.lm,