Fix indentation

This commit is contained in:
Matthew Slowe 2021-01-24 14:36:45 +00:00
parent 415451a8fb
commit 489d5271d8

View File

@ -112,7 +112,7 @@ $mqtt = Net::MQTT::Simple->new($ENV{MQTT_SERVER}) or die "Failed to connect to m
$mqtt->subscribe(
"$ENV{MQTT_MONITOR}" => sub {
my ($topic, $message) = @_;
_debug("--> $topic");
_debug("--> $topic");
handle($topic, $message);
},
);