From 1268d3b13ffad68bae03b3f33c4d726fec4341ea Mon Sep 17 00:00:00 2001
From: Guilhem Saurel <guilhem.saurel@laas.fr>
Date: Sat, 28 Sep 2019 10:51:15 +0200
Subject: [PATCH] [Style] ignore __init__.py from within it

---
 python/example_robot_data/__init__.py | 1 +
 setup.cfg                             | 9 ---------
 2 files changed, 1 insertion(+), 9 deletions(-)
 delete mode 100644 setup.cfg

diff --git a/python/example_robot_data/__init__.py b/python/example_robot_data/__init__.py
index 6fb3724..3f08246 100644
--- a/python/example_robot_data/__init__.py
+++ b/python/example_robot_data/__init__.py
@@ -1,2 +1,3 @@
+# flake8: noqa
 from .robots_loader import (getModelPath, loadANYmal, loadHyQ, loadICub, loadSolo, loadTalos, loadTalosArm,
                             loadTalosLegs, loadTiago, loadTiagoNoHand, loadUR, readParamsFromSrdf)
diff --git a/setup.cfg b/setup.cfg
deleted file mode 100644
index 40158e3..0000000
--- a/setup.cfg
+++ /dev/null
@@ -1,9 +0,0 @@
-[flake8]
-max-line-length = 119
-exclude = example_robot_data/__init__.py
-
-[yapf]
-column_limit = 119
-
-[isort]
-line_length = 119
-- 
GitLab