[pve-devel] [PATCH manager 2/9] api: replication: code style: order module imports
Fiona Ebner
f.ebner at proxmox.com
Fri Jul 18 11:30:08 CEST 2025
Signed-off-by: Fiona Ebner <f.ebner at proxmox.com>
---
PVE/API2/Replication.pm | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/PVE/API2/Replication.pm b/PVE/API2/Replication.pm
index 4d45ff84..f4eafcf0 100644
--- a/PVE/API2/Replication.pm
+++ b/PVE/API2/Replication.pm
@@ -3,21 +3,19 @@ package PVE::API2::Replication;
use warnings;
use strict;
-use PVE::JSONSchema qw(get_standard_option);
-use PVE::RPCEnvironment;
use PVE::Format qw(render_timestamp);
-use PVE::ProcFSTools;
-
-use PVE::ReplicationConfig;
-use PVE::ReplicationState;
-use PVE::Replication;
-use PVE::QemuConfig;
-use PVE::QemuServer;
+use PVE::JSONSchema qw(get_standard_option);
use PVE::LXC::Config;
use PVE::LXC;
use PVE::Notify;
-
+use PVE::ProcFSTools;
+use PVE::QemuConfig;
+use PVE::QemuServer;
+use PVE::ReplicationConfig;
+use PVE::ReplicationState;
+use PVE::Replication;
use PVE::RESTHandler;
+use PVE::RPCEnvironment;
use base qw(PVE::RESTHandler);
--
2.47.2
More information about the pve-devel
mailing list