Skip to content

Commit

Permalink
Update settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen authored Oct 30, 2023
1 parent b71ef01 commit cba2569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/quacc/settings.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Settings for quacc"""
from __future__ import annotations

import importlib.util
from importlib import resources, util
import os
from pathlib import Path
from shutil import which
Expand All @@ -25,7 +25,7 @@
"redun",
"jobflow",
]:
if importlib.util.find_spec(wflow_engine):
if util.find_spec(wflow_engine):
installed_engine = wflow_engine
break

Expand Down

0 comments on commit cba2569

Please sign in to comment.