Skip to content

Commit 6d0225d

Browse files
move files around
1 parent 76a1649 commit 6d0225d

8 files changed

Lines changed: 1 addition & 16 deletions

File tree

File renamed without changes.
Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
Class containing helper methods for gathering data needed for a SuiteReport object
99
"""
1010

11-
import sys
12-
13-
sys.path.append("../")
1411
import re
1512
import shutil
1613
import sqlite3
@@ -19,19 +16,7 @@
1916
from collections import defaultdict
2017
from pathlib import Path
2118
from typing import Dict, List, Optional, Set, Union
22-
23-
try:
24-
from bdiff.git_bdiff import GitBDiff, GitInfo
25-
except ImportError:
26-
try:
27-
from git_bdiff import GitBDiff, GitInfo
28-
except ImportError as err:
29-
raise ImportError(
30-
"Unable to import from git_bdiff module. This is included in the same "
31-
"repository as this script and included with a relative import. Ensure "
32-
"this script is being called from the correct place."
33-
) from err
34-
19+
from git_bdiff import GitBDiff, GitInfo
3520

3621
class SuiteData:
3722
"""

0 commit comments

Comments
 (0)