From 2c478a3b971cf517bee0bb55ba2006d0ccbfd8f5 Mon Sep 17 00:00:00 2001 From: Stephan Seitz <stephan.seitz@fau.de> Date: Mon, 28 Oct 2019 11:04:38 +0100 Subject: [PATCH] Add sympy to known_third_party in .isort.cfg I have installed the newest master of SymPy as editable package. So `isort` thinks it's one of our libraries. With this config SymPy is declared as a third party dependency. --- .isort.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/.isort.cfg b/.isort.cfg index cbdece311..bfe068484 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -2,3 +2,4 @@ line_length=100 balanced_wrapping=True multi_line_output=4 +known_third_party=sympy -- GitLab