[pve-devel] [PATCH guest-common 1/3] abstract config: order module imports

Fiona Ebner f.ebner at proxmox.com
Fri Sep 19 18:16:34 CEST 2025


Signed-off-by: Fiona Ebner <f.ebner at proxmox.com>
---
 src/PVE/AbstractConfig.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/PVE/AbstractConfig.pm b/src/PVE/AbstractConfig.pm
index 420a10d..7a4abbd 100644
--- a/src/PVE/AbstractConfig.pm
+++ b/src/PVE/AbstractConfig.pm
@@ -3,10 +3,10 @@ package PVE::AbstractConfig;
 use strict;
 use warnings;
 
-use PVE::Tools qw(lock_file lock_file_full);
-use PVE::INotify;
 use PVE::Cluster;
+use PVE::INotify;
 use PVE::Storage;
+use PVE::Tools qw(lock_file lock_file_full);
 
 use PVE::GuestHelpers qw(typesafe_ne);
 use PVE::ReplicationConfig;
-- 
2.47.3





More information about the pve-devel mailing list