formatting

This commit is contained in:
proddy
2020-10-17 16:55:17 +02:00
parent 4f0f476407
commit 4d0589f316

View File

@@ -101,6 +101,7 @@ void Command::show(uuid::console::Shell & shell, uint8_t device_type) {
}
// see if a device_type is active and has associated commands
// returns false if the device has no commands
bool Command::device_has_commands(const uint8_t device_type) {
if (device_type == EMSdevice::DeviceType::UNKNOWN) {
return false;
@@ -124,6 +125,7 @@ bool Command::device_has_commands(const uint8_t device_type) {
}
}
}
return false;
}