Skip to content

Commit

Permalink
remove redundant dictionary comprehension
Browse files Browse the repository at this point in the history
  • Loading branch information
aromanielloNTIA committed Apr 25, 2023
1 parent 9143c45 commit 8bfea89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scos_actions/actions/acquire_sea_data_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ def capture_iq(self, params: dict) -> dict:
start_time = utils.get_datetime_str_now()
tic = perf_counter()
# Configure signal analyzer
self.configure_sigan({k: v for k, v in hw_params.items() if k != RF_PATH})
self.configure_sigan(hw_params)
# Get IQ capture parameters
duration_ms = utils.get_parameter(DURATION_MS, params)
nskip = utils.get_parameter(NUM_SKIP, params)
Expand Down

0 comments on commit 8bfea89

Please sign in to comment.