From fdeaf753611b45a3fba8118a4381861fc3f4f704 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kundr=C3=A1t?= Date: Thu, 23 Apr 2020 18:37:35 +0200 Subject: [PATCH] Fix syntax of the bandit config file Unlike codacy, it seems that bandit the CLI tool complains about these: Unable to parse config file: File contains no section headers. file: '/home/jkt/work/TIP/oopt-gnpy/.bandit', line: 1 "skips: ['B101']\n" Change-Id: Iab93052fd8aaf1754571a3c66796cfe3026f6a63 --- .bandit | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bandit b/.bandit index 75d550c3..f7831187 100644 --- a/.bandit +++ b/.bandit @@ -1 +1,2 @@ -skips: ['B101'] +[bandit] +skips: B101