code style

This commit is contained in:
Marko Oldenburg 2020-04-25 08:51:34 +02:00
parent cb3f5c1ecb
commit cc25c68125

View File

@ -208,7 +208,8 @@ sub new {
$self->{cachemaxage} = (
defined( $apioptions->{cachemaxage} )
? $apioptions->{cachemaxage}
: 900 );
: 900
);
$self->{cached} = _CreateForecastRef($self);
bless $self, $class;
@ -247,7 +248,7 @@ sub setRetrieveData {
}
sub setLocation {
my ($self,$lat,$long) = @_;
my ( $self, $lat, $long ) = @_;
$self->{lat} = $lat;
$self->{long} = $long;
@ -273,8 +274,7 @@ sub _RetrieveDataFromOpenWeatherMap {
# retrieve data from cache
if ( ( time() - $self->{fetchTime} ) < $self->{cachemaxage}
and $self->{cached}->{lat} == $self->{lat}
and $self->{cached}->{long} == $self->{long}
)
and $self->{cached}->{long} == $self->{long} )
{
return _CallWeatherCallbackFn($self);
}
@ -441,7 +441,8 @@ sub _ProcessingRetrieveData {
),
};
$self->{cached}->{current}->{'visibility'} = int(sprintf( "%.1f", $data->{visibility} ) + 0.5)
$self->{cached}->{current}->{'visibility'} =
int( sprintf( "%.1f", $data->{visibility} ) + 0.5 )
if ( exists $data->{visibility} );
}
@ -616,7 +617,8 @@ sub _CreateForecastRef {
long => $self->{long},
apiMaintainer =>
'Leon Gaultier (<a href=https://forum.fhem.de/index.php?action=profile;u=13684>CoolTux</a>)',
apiVersion => version->parse(OpenWeatherMapAPI->VERSION())->normal,
apiVersion =>
version->parse( OpenWeatherMapAPI->VERSION() )->normal,
}
);
@ -646,7 +648,6 @@ sub strftimeWrapper {
1;
=pod
=encoding utf8