Skip to content

Commit 5340abd

Browse files
committed
Cleanup
1 parent 55707b8 commit 5340abd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

arho_feature_template/core/plan_manager.py

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020

2121
class PlanManager:
22-
HTTP_STATUS_OK = 200
23-
2422
def __init__(self):
2523
# Init network manager
2624
self.network_manager = QNetworkAccessManager()

arho_feature_template/gui/serialize_plan.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ def __init__(self):
2626
self.buttonBox.rejected.connect(self.reject)
2727

2828
def select_plan_outline_file(self):
29-
file_path, _ = QFileDialog.getSaveFileName(self, "Valitse kaavan ulkorajan tallennuspolku", "", "JSON Files (*.json)")
29+
file_path, _ = QFileDialog.getSaveFileName(
30+
self, "Valitse kaavan ulkorajan tallennuspolku", "", "JSON Files (*.json)"
31+
)
3032
if file_path:
3133
self.plan_outline_path_edit.setText(file_path)
3234
self.check_inputs()

0 commit comments

Comments
 (0)