From 41e7eaaf04f15d16e9ac2b5918cae3b010a05e94 Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby <pierre-antoine.rouby@inrae.fr> Date: Wed, 19 Apr 2023 10:28:04 +0200 Subject: [PATCH] geometry: Rename PlotXY file. --- src/View/Geometry/GeometryWindow.py | 2 +- src/View/Geometry/{reach_plot_xy.py => PlotXY.py} | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) rename src/View/Geometry/{reach_plot_xy.py => PlotXY.py} (99%) diff --git a/src/View/Geometry/GeometryWindow.py b/src/View/Geometry/GeometryWindow.py index c200458d..b853005e 100644 --- a/src/View/Geometry/GeometryWindow.py +++ b/src/View/Geometry/GeometryWindow.py @@ -17,7 +17,7 @@ from PyQt5.QtWidgets import ( QApplication, QMainWindow, QFileDialog, QCheckBox ) -from View.Geometry.reach_plot_xy import PlotXY +from View.Geometry.PlotXY import PlotXY from View.Geometry.mainwindow_ui_reach import Ui_MainWindow from View.Geometry import qtableview_reach from View.Geometry import window_profileXYZ diff --git a/src/View/Geometry/reach_plot_xy.py b/src/View/Geometry/PlotXY.py similarity index 99% rename from src/View/Geometry/reach_plot_xy.py rename to src/View/Geometry/PlotXY.py index 4d625133..2d7b6ed0 100644 --- a/src/View/Geometry/reach_plot_xy.py +++ b/src/View/Geometry/PlotXY.py @@ -7,7 +7,6 @@ from PyQt5.QtCore import ( QCoreApplication ) - _translate = QCoreApplication.translate class PlotXY(APlot): -- GitLab