From 6185d67d1278a92d6a707780144706b92e84149e Mon Sep 17 00:00:00 2001 From: Magnus Persson Date: Sun, 15 May 2022 10:26:21 +0200 Subject: [PATCH] Fix pre-commit fail --- src/config.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config.hpp b/src/config.hpp index cbe1ba4..f1b2571 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -184,7 +184,8 @@ class Config { // Gyro calibration and formula calculation data RawGyroData _gyroCalibration = {0, 0, 0, 0, 0, 0}; - RawFormulaData _formulaData = {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {1, 1, 1, 1, 1, 1, 1, 1, 1, 1}}; + RawFormulaData _formulaData = {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, + {1, 1, 1, 1, 1, 1, 1, 1, 1, 1}}; void formatFileSystem();