use quotes for local headers

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I95f247bd17cffab8b9ef3337f48336f8d7059c2d
diff --git a/include/ADCSensor.hpp b/include/ADCSensor.hpp
index 331a229..cb595c9 100644
--- a/include/ADCSensor.hpp
+++ b/include/ADCSensor.hpp
@@ -1,10 +1,11 @@
 #pragma once
 
-#include <Thresholds.hpp>
+#include "Thresholds.hpp"
+#include "sensor.hpp"
+
 #include <gpiod.hpp>
 #include <optional>
 #include <sdbusplus/asio/object_server.hpp>
-#include <sensor.hpp>
 
 class BridgeGpio
 {
diff --git a/include/CPUSensor.hpp b/include/CPUSensor.hpp
index 7a2819f..01eadc1 100644
--- a/include/CPUSensor.hpp
+++ b/include/CPUSensor.hpp
@@ -1,14 +1,14 @@
 #pragma once
 
+#include "Thresholds.hpp"
 #include "Utils.hpp"
+#include "sensor.hpp"
 
-#include <Thresholds.hpp>
 #include <boost/container/flat_map.hpp>
 #include <filesystem>
 #include <fstream>
 #include <gpiod.hpp>
 #include <sdbusplus/asio/object_server.hpp>
-#include <sensor.hpp>
 
 class CPUSensor : public Sensor
 {
diff --git a/include/HwmonTempSensor.hpp b/include/HwmonTempSensor.hpp
index 795c02d..b5d80e3 100644
--- a/include/HwmonTempSensor.hpp
+++ b/include/HwmonTempSensor.hpp
@@ -1,8 +1,9 @@
 #pragma once
 
-#include <Thresholds.hpp>
+#include "Thresholds.hpp"
+#include "sensor.hpp"
+
 #include <sdbusplus/asio/object_server.hpp>
-#include <sensor.hpp>
 
 class HwmonTempSensor : public Sensor
 {
@@ -25,4 +26,4 @@
     void setupRead(void);
     void handleResponse(const boost::system::error_code& err);
     void checkThresholds(void) override;
-};
\ No newline at end of file
+};
diff --git a/include/PSUSensor.hpp b/include/PSUSensor.hpp
index 370ded9..f7ed88f 100644
--- a/include/PSUSensor.hpp
+++ b/include/PSUSensor.hpp
@@ -1,9 +1,10 @@
 #pragma once
 
-#include <PwmSensor.hpp>
-#include <Thresholds.hpp>
+#include "PwmSensor.hpp"
+#include "Thresholds.hpp"
+#include "sensor.hpp"
+
 #include <sdbusplus/asio/object_server.hpp>
-#include <sensor.hpp>
 
 class PSUSensor : public Sensor
 {
diff --git a/include/TachSensor.hpp b/include/TachSensor.hpp
index f79fb4d..8ab1083 100644
--- a/include/TachSensor.hpp
+++ b/include/TachSensor.hpp
@@ -1,12 +1,13 @@
 #pragma once
 
+#include "Thresholds.hpp"
+#include "sensor.hpp"
+
 #include <systemd/sd-journal.h>
 
-#include <Thresholds.hpp>
 #include <boost/container/flat_map.hpp>
 #include <boost/container/flat_set.hpp>
 #include <sdbusplus/asio/object_server.hpp>
-#include <sensor.hpp>
 
 class PresenceSensor
 {
diff --git a/include/Thresholds.hpp b/include/Thresholds.hpp
index 37ce108..f1e7cc6 100644
--- a/include/Thresholds.hpp
+++ b/include/Thresholds.hpp
@@ -1,5 +1,6 @@
 #pragma once
-#include <Utils.hpp>
+#include "Utils.hpp"
+
 #include <boost/asio/io_service.hpp>
 #include <nlohmann/json.hpp>
 
diff --git a/include/sensor.hpp b/include/sensor.hpp
index 21474b1..aad8548 100644
--- a/include/sensor.hpp
+++ b/include/sensor.hpp
@@ -1,6 +1,7 @@
 #pragma once
 
-#include <Thresholds.hpp>
+#include "Thresholds.hpp"
+
 #include <sdbusplus/asio/object_server.hpp>
 
 constexpr size_t sensorFailedPollTimeMs = 5000;