Skip to content

Commit

Permalink
Fix an exception during local ubuntu builds of intrisic generator
Browse files Browse the repository at this point in the history
This change is to fix the following exception for python 3.9+:
module 'importlib' has no attribute 'util'.
  • Loading branch information
krystian-andrzejewski authored and igcbot committed Aug 21, 2023
1 parent 60aa39d commit c7361a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import sys
import re
import json
import importlib
import importlib.util
import argparse
from Intrinsic_definition_objects import *
from Intrinsic_utils import file_path, Path
Expand Down

0 comments on commit c7361a5

Please sign in to comment.