From ba52cf51e00b823e0e6389c204b63c027de0a97a Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Mon, 22 May 2017 11:11:37 +0200 Subject: [PATCH] Do not exclude __init__.py from isort --- .isort.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/.isort.cfg b/.isort.cfg index f565623..d7236d1 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -5,3 +5,4 @@ lines_after_imports=2 add_imports=from __future__ import unicode_literals sections=FUTURE,STDLIB,THIRDPARTY,INDICO,FIRSTPARTY,LOCALFOLDER known_indico=indico +not_skip=__init__.py