Skip to content

Commit

Permalink
helpers: remove imporlib_resources import
Browse files Browse the repository at this point in the history
Should have been part of commit 10d4c6d
  • Loading branch information
sandre35 committed Feb 27, 2024
1 parent ab06a5e commit ee03870
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/grocker/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,11 @@
import subprocess # noqa: S404
import tempfile
import time
from importlib import resources

import jinja2
import yaml

try:
from importlib import resources
except ImportError:
# Python<3.9: use importlib-resources package
import importlib_resources as resources # type: ignore


def deep_update(initial_mapping, updating_mapping):
updated_mapping = initial_mapping.copy()
Expand Down

0 comments on commit ee03870

Please sign in to comment.