From a82eb8b6f61e8c6f77860b8843c901ffc2922a57 Mon Sep 17 00:00:00 2001
From: Victor Grousset/tuxayo <victor@tuxayo.net>
Date: Thu, 8 Feb 2024 04:56:47 +0100
Subject: [PATCH] Bug 31286: (QA follow-up): tidy up code

---
 Koha/Exporter/Record.pm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Koha/Exporter/Record.pm b/Koha/Exporter/Record.pm
index 974689eb92..dd9d22293c 100644
--- a/Koha/Exporter/Record.pm
+++ b/Koha/Exporter/Record.pm
@@ -116,12 +116,12 @@ sub _get_authority_for_export {
 }
 
 sub _get_biblio_for_export {
-    my ($params)     = @_;
-    my $biblionumber = $params->{biblionumber};
-    my $itemnumbers  = $params->{itemnumbers};
-    my $export_items = $params->{export_items} // 1;
+    my ($params)                       = @_;
+    my $biblionumber                   = $params->{biblionumber};
+    my $itemnumbers                    = $params->{itemnumbers};
+    my $export_items                   = $params->{export_items} // 1;
     my $only_export_items_for_branches = $params->{only_export_items_for_branches};
-    my $embed_see_from_headings = $params->{embed_see_from_headings};
+    my $embed_see_from_headings        = $params->{embed_see_from_headings};
 
     my $biblio = Koha::Biblios->find($biblionumber);
     my $record = eval { $biblio->metadata->record };
-- 
2.43.0