Skip to content

Commit

Permalink
Fix type annotations again.
Browse files Browse the repository at this point in the history
  • Loading branch information
tymorrow committed Oct 31, 2023
1 parent 5c8fc83 commit afa59bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions riid/gadras/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def get_expanded_config(config: dict) -> dict:
return expanded_config


def get_detector_setups(expanded_config: dict) -> list[dict]:
def get_detector_setups(expanded_config: dict):
"""
Permutate the lists of values in the expanded config to
generate a list of detector setups.
Expand All @@ -554,7 +554,7 @@ def get_detector_setups(expanded_config: dict) -> list[dict]:
return detector_setups


def get_inject_setups(config: dict) -> list[dict]:
def get_inject_setups(config: dict):
"""
Creates a list of dictionaries containing the individual detector_setups with
expanded sources.
Expand Down

0 comments on commit afa59bb

Please sign in to comment.