summaryrefslogtreecommitdiff
path: root/src/flake8/plugins
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2021-03-30 02:08:31 +0000
committerAnthony Sottile <asottile@umich.edu>2021-03-30 02:08:31 +0000
commit01d72d89b14d2377a25b2aa98415dbf145be7d8f (patch)
tree8f8c96385848281021783ccba3821f4bf9a645f5 /src/flake8/plugins
parent434c108f7491b589362752b12979741598bb2dff (diff)
parent1a1d850e99bb28625e47f4aa3c27014a3ac6758a (diff)
downloadflake8-01d72d89b14d2377a25b2aa98415dbf145be7d8f.tar.gz
Merge branch 'remove_vcs_stuff' into 'master'
remove vcs integration See merge request pycqa/flake8!468
Diffstat (limited to 'src/flake8/plugins')
-rw-r--r--src/flake8/plugins/pyflakes.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/flake8/plugins/pyflakes.py b/src/flake8/plugins/pyflakes.py
index b9b30d0..e845483 100644
--- a/src/flake8/plugins/pyflakes.py
+++ b/src/flake8/plugins/pyflakes.py
@@ -2,13 +2,6 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import
-try:
- # The 'demandimport' breaks pyflakes and flake8.plugins.pyflakes
- from mercurial import demandimport
-except ImportError:
- pass
-else:
- demandimport.disable()
import os
from typing import List