We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2727e24 commit caf39cdCopy full SHA for caf39cd
reqable/main.py
@@ -1,4 +1,10 @@
1
import sys
2
+import os
3
+
4
+pwd = os.path.dirname(os.path.abspath(__file__))
5
+if pwd not in sys.path:
6
+ sys.path.append(pwd)
7
8
import json
9
from reqable import CaptureContext, CaptureHttpRequest, CaptureHttpResponse
10
import addons
0 commit comments