Skip to content

Commit

Permalink
The type:ignore is not needed any more.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyandrewmeyer committed Dec 17, 2024
1 parent e434f46 commit 2592f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/src/scenario/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def __init__(
if not any((meta, actions, config)):
logger.debug("Autoloading charmspec...")
try:
spec: _CharmSpec[CharmType] = _CharmSpec.autoload(charm_type) # type: ignore
spec: _CharmSpec[CharmType] = _CharmSpec.autoload(charm_type)
except MetadataNotFoundError as e:
raise ContextSetupError(
f"Cannot setup scenario with `charm_type`={charm_type}. "
Expand Down

0 comments on commit 2592f07

Please sign in to comment.