main: add missing `import importlib.util`

Used in `resolve_collection_argument`. It's implicitly imported by some
other import, but some type checkers don't recognize this.
This commit is contained in:
Ran Benita 2024-03-01 13:26:08 +02:00
parent 98b008ff6c
commit ff4c3b2873
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import dataclasses
import fnmatch import fnmatch
import functools import functools
import importlib import importlib
import importlib.util
import os import os
from pathlib import Path from pathlib import Path
import sys import sys