5
0
mirror of git://git.proxmox.com/git/pve-guest-common.git synced 2025-03-11 16:58:18 +03:00

mappings: cleanup imports

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-06-07 19:16:02 +02:00
parent 11fa95682e
commit 59b336314f
2 changed files with 16 additions and 8 deletions

View 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);

View 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);