summaryrefslogtreecommitdiff
path: root/src/flake8/plugins
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2021-03-29 19:01:59 -0700
committerAnthony Sottile <asottile@umich.edu>2021-03-29 19:01:59 -0700
commit1a1d850e99bb28625e47f4aa3c27014a3ac6758a (patch)
tree8f8c96385848281021783ccba3821f4bf9a645f5 /src/flake8/plugins
parent434c108f7491b589362752b12979741598bb2dff (diff)
downloadflake8-1a1d850e99bb28625e47f4aa3c27014a3ac6758a.tar.gz
remove vcs integration
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