You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2019/12/10 22:04:06 UTC

[GitHub] [incubator-superset] willbarrett commented on a change in pull request #8743: Fix a bunch of files with pylint disabled

willbarrett commented on a change in pull request #8743: Fix a bunch of files with pylint disabled
URL: https://github.com/apache/incubator-superset/pull/8743#discussion_r356302741
 
 

 ##########
 File path: superset/sql_lab.py
 ##########
 @@ -14,14 +14,16 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-# pylint: disable=C,R,W
 import logging
 import uuid
 from contextlib import closing
 from datetime import datetime
 from sys import getsizeof
 from typing import Optional, Tuple, Union
 
+# pylint and isort disagree on the correct import order.
+# Let's have isort win.
+# pylint: disable=ungrouped-imports
 
 Review comment:
   Yup. Not a bad idea. Will update here before I forget.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org