Commit e42a7fd
committed
fix: Add missing importlib.util import
* Without first importing importlib.util an AttributeError will be raised
```
Traceback (most recent call last):
File "/madanalysis5/./bin/ma5", line 51, in <module>
if not importlib.util.find_spec("six"):
^^^^^^^^^^^^^^
AttributeError: module 'importlib' has no attribute 'util'
```1 parent 3900ec9 commit e42a7fd
2 files changed
+5
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
| 51 | + | |
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
9 | 12 | | |
10 | 13 | | |
11 | 14 | | |
0 commit comments