diff -r 176145438b1e -r 422fd05e9c91 eric6/Plugins/CheckerPlugins/CodeStyleChecker/mccabe.py --- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/mccabe.py Thu Jun 25 19:09:55 2020 +0200 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/mccabe.py Sat Jun 27 12:08:12 2020 +0200 @@ -3,7 +3,6 @@ http://nedbatchelder.com/blog/200803/python_code_complexity_microtool.html MIT License. """ -from __future__ import with_statement import collections import ast @@ -215,6 +214,3 @@ self.dispatch_list(node.body) visitAsyncWith = visitWith - -# -# eflag: noqa = M702