From a2efc839533e0424a3932178860e76377a8eb7a2 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 16 Feb 2023 12:33:18 -0500 Subject: [PATCH] Exclude monitoring examples from flake8 --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 810a8500..2cc50667 100644 --- a/.flake8 +++ b/.flake8 @@ -6,7 +6,7 @@ ignore = W503, E501 extend-ignore = E203 # We exclude the Debian, migrations, and provisioner examples -exclude = debian,api-daemon/migrations/versions,api-daemon/provisioner/examples +exclude = debian,api-daemon/migrations/versions,api-daemon/provisioner/examples,node-daemon/monitoring # Set the max line length to 88 for Black max-line-length = 88