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 3f28200 commit c51d801Copy full SHA for c51d801
utils.py
@@ -3,7 +3,6 @@
3
import copy
4
import csv
5
from functools import cmp_to_key
6
-import imp
7
import json
8
import os
9
import re
@@ -176,13 +175,6 @@ def get_min_version(version1, version2):
176
175
return version2
177
178
179
-def get_special_treatment_list():
180
- _, pathname, description = imp.find_module("exporting.special_treatment_objects")
181
- return set([os.path.splitext(module)[0]
182
- for module in os.listdir(pathname)
183
- if module.endswith('.py')])
184
-
185
186
def extract_sid_from_session_file(session_file):
187
with open(session_file) as f:
188
content = f.readlines()
0 commit comments