We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba10cf1 commit b199bd5Copy full SHA for b199bd5
gitdb/__init__.py
@@ -7,25 +7,6 @@
7
import sys
8
import os
9
10
-#{ Initialization
11
-
12
13
-def _init_externals():
14
- """Initialize external projects by putting them into the path"""
15
- for module in ('smmap',):
16
- sys.path.append(os.path.join(os.path.dirname(__file__), 'ext', module))
17
18
- try:
19
- __import__(module)
20
- except ImportError:
21
- raise ImportError("'%s' could not be imported, assure it is located in your PYTHONPATH" % module)
22
- # END verify import
23
- # END handel imports
24
25
-#} END initialization
26
27
-_init_externals()
28
29
__author__ = "Sebastian Thiel"
30
__contact__ = "byronimo@gmail.com"
31
__homepage__ = "https://github.com/gitpython-developers/gitdb"
0 commit comments