diff --git a/lib/Travel/Status/DE/HAFAS/StopFinder.pm b/lib/Travel/Status/DE/HAFAS/StopFinder.pm
index 93e06396ab9e091a59167a5f3b5d539d2c6ccede..2d038b5c7f125a942ee0bcc6eafe84c278f57b35 100644
--- a/lib/Travel/Status/DE/HAFAS/StopFinder.pm
+++ b/lib/Travel/Status/DE/HAFAS/StopFinder.pm
@@ -7,7 +7,7 @@ use utf8;
 
 no if $] >= 5.018, warnings => 'experimental::smartmatch';
 
-use Carp qw(confess);
+use Carp   qw(confess);
 use Encode qw(decode);
 use JSON;
 use LWP::UserAgent;
@@ -18,7 +18,7 @@ sub new {
 	my ( $obj, %conf ) = @_;
 
 	my $lang = $conf{language} // 'd';
-	my $ua = $conf{ua};
+	my $ua   = $conf{ua};
 
 	if ( not $ua ) {
 		my %lwp_options = %{ $conf{lwp_options} // { timeout => 10 } };