@@ -54,7 +54,7 @@ def _get_regression_query(select_query: str) -> str:
5454 )
5555
5656
57- def get_regression_bene_ids (uri : str , table_sample_pct : float | None = None ) -> list [str ]: # noqa: ARG001
57+ def get_regression_bene_ids (uri : str , table_sample_pct : float | None = None ) -> list [str ]:
5858 """Retrieve a list of beneficiary IDs within the range of 20,000 contiguous synthetic
5959 beneficiaries that exist in each environment. Returned list is sorted in ascending order.
6060
@@ -68,7 +68,7 @@ def get_regression_bene_ids(uri: str, table_sample_pct: float | None = None) ->
6868 return [str (r [0 ]) for r in _execute (uri , bene_query )]
6969
7070
71- def get_regression_hashed_mbis (uri : str , table_sample_pct : float | None = None ) -> list [str ]: # noqa: ARG001
71+ def get_regression_hashed_mbis (uri : str , table_sample_pct : float | None = None ) -> list [str ]:
7272 """Retrieve a list of hashed MBIs within the range of 20,000 contiguous synthetic
7373 beneficiaries that exist in each environment. Returned list is sorted in ascending order.
7474
@@ -82,7 +82,7 @@ def get_regression_hashed_mbis(uri: str, table_sample_pct: float | None = None)
8282 return [str (r [0 ]) for r in _execute (uri , mbi_query )]
8383
8484
85- def get_regression_mbis (uri : str , table_sample_pct : float | None = None ) -> list [str ]: # noqa: ARG001
85+ def get_regression_mbis (uri : str , table_sample_pct : float | None = None ) -> list [str ]:
8686 """Retrieve a list of MBIs within the range of 20,000 contiguous synthetic
8787 beneficiaries that exist in each environment. Returned list is sorted in ascending order.
8888
@@ -98,7 +98,7 @@ def get_regression_mbis(uri: str, table_sample_pct: float | None = None) -> list
9898
9999def get_regression_contract_ids (
100100 uri : str ,
101- table_sample_pct : float | None = None , # noqa: ARG001
101+ table_sample_pct : float | None = None ,
102102) -> list [dict [str , str ]]:
103103 """Retrieve a list of contract IDs within the range of 20,000 contiguous synthetic
104104 beneficiaries that exist in each environment. Returned list is sorted in ascending order, and
@@ -126,7 +126,7 @@ def get_regression_contract_ids(
126126 ]
127127
128128
129- def get_regression_pac_hashed_mbis (uri : str , table_sample_pct : float | None = None ) -> list [str ]: # noqa: ARG001
129+ def get_regression_pac_hashed_mbis (uri : str , table_sample_pct : float | None = None ) -> list [str ]:
130130 """Return a list of MBI hashes within the set of static, synthetic PAC data.
131131
132132 Args:
@@ -141,7 +141,7 @@ def get_regression_pac_hashed_mbis(uri: str, table_sample_pct: float | None = No
141141 return [str (r [0 ]) for r in _execute (uri , claims_mbis_query )]
142142
143143
144- def get_regression_pac_mbis (uri : str , table_sample_pct : float | None = None ) -> list [str ]: # noqa: ARG001
144+ def get_regression_pac_mbis (uri : str , table_sample_pct : float | None = None ) -> list [str ]:
145145 """Return a list of MBI within the set of static, synthetic PAC data.
146146
147147 Args:
0 commit comments