Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
brownj85 committed Dec 16, 2024
1 parent 8eef458 commit 4f14858
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pennylane/data/data_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from concurrent import futures
from functools import lru_cache
from pathlib import Path
from typing import Iterable, Mapping, Optional, Union
from typing import Iterable, Mapping, Optional, Union, Any

from requests import get, head

Expand All @@ -33,7 +33,6 @@
_get_parameter_tree,
list_data_names,
list_attributes,
ParameterTreeNode,
)
from .foldermap import FolderMapView, ParamArg
from .params import DEFAULT, FULL, format_params, provide_defaults
Expand Down Expand Up @@ -469,7 +468,7 @@ def _interactive_request_attributes(attribute_options):


def _interactive_request_parameters(
parameter_names: list[str], parameter_tree: ParameterTreeNode
parameter_names: list[str], parameter_tree: dict[str, Any]
):
"""Prompts the user to select parameters for datasets one at a time."""
selection: dict[str, str] = {}
Expand Down

0 comments on commit 4f14858

Please sign in to comment.