]> git.proxmox.com Git - pve-guest-common.git/commitdiff
mappings: cleanup imports
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 7 Jun 2023 17:16:02 +0000 (19:16 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 7 Jun 2023 17:16:02 +0000 (19:16 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/PVE/Mapping/PCI.pm
src/PVE/Mapping/USB.pm

index 5b9d6b38528b451e30d22235ed0c8ab9f7f34567..a3ced0e74b71a4662269209b33d51bb1311ff8e1 100644 (file)
@@ -3,11 +3,15 @@ package PVE::Mapping::PCI;
 use strict;
 use warnings;
 
-use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_lock_file cfs_write_file);
-use PVE::INotify;
+use PVE::Cluster qw(
+    cfs_lock_file
+    cfs_read_file
+    cfs_register_file
+    cfs_write_file
+);
+use PVE::INotify ();
 use PVE::JSONSchema qw(get_standard_option parse_property_string);
-use PVE::SectionConfig;
-use PVE::SysFSTools;
+use PVE::SysFSTools ();
 
 use base qw(PVE::SectionConfig);
 
index 483e92b7897b721059319850a5fd396d0117bd39..ad865374aab96c6721fe5f36cb110df99c57b59f 100644 (file)
@@ -3,11 +3,15 @@ package PVE::Mapping::USB;
 use strict;
 use warnings;
 
-use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_lock_file cfs_write_file);
-use PVE::INotify;
+use PVE::Cluster qw(
+    cfs_lock_file
+    cfs_read_file
+    cfs_register_file
+    cfs_write_file
+);
+use PVE::INotify ();
 use PVE::JSONSchema qw(get_standard_option parse_property_string);
-use PVE::SectionConfig;
-use PVE::SysFSTools;
+use PVE::SysFSTools ();
 
 use base qw(PVE::SectionConfig);