From e02db471ab7328f84e420c66a6b5a27bc9632c32 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 10 Oct 2023 15:33:41 +0200 Subject: [PATCH] api tools: improve use-statement sorting and grouping Signed-off-by: Thomas Lamprecht --- PVE/API2Tools.pm | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/PVE/API2Tools.pm b/PVE/API2Tools.pm index 618c13b3..6bec3844 100644 --- a/PVE/API2Tools.pm +++ b/PVE/API2Tools.pm @@ -2,19 +2,20 @@ package PVE::API2Tools; use strict; use warnings; -use Net::IP; -use PVE::Exception qw(raise_param_exc); -use PVE::Tools; -use PVE::INotify; -use PVE::Cluster; -use PVE::DataCenterConfig; -use PVE::RPCEnvironment; use Digest::MD5 qw(md5_hex); -use URI; +use Net::IP; use URI::Escape; +use URI; + +use PVE::Cluster; +use PVE::DataCenterConfig; # so we can cfs-read datacenter.cfg +use PVE::Exception qw(raise_param_exc); +use PVE::INotify; +use PVE::RPCEnvironment; use PVE::SafeSyslog; use PVE::Storage::Plugin; +use PVE::Tools; my $hwaddress; my $hwaddress_st = {};