From 3257066f9fa42f22c6d7d073df954eeb2c9e05dc Mon Sep 17 00:00:00 2001 From: Tinyblargon <76069640+Tinyblargon@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:08:42 +0200 Subject: [PATCH] refactor: remove unused variable --- proxmox/config_qemu.go | 1 - 1 file changed, 1 deletion(-) diff --git a/proxmox/config_qemu.go b/proxmox/config_qemu.go index 0d2d084f..12b2a563 100644 --- a/proxmox/config_qemu.go +++ b/proxmox/config_qemu.go @@ -868,7 +868,6 @@ var ( rxUnusedDiskName = regexp.MustCompile(`^(unused)\d+`) rxNicName = regexp.MustCompile(`net\d+`) rxMpName = regexp.MustCompile(`mp\d+`) - rxSerialName = regexp.MustCompile(`serial\d+`) rxUsbName = regexp.MustCompile(`usb\d+`) rxPCIName = regexp.MustCompile(`hostpci\d+`) )