Skip to content

Commit 717ddb2

Browse files
committed
Remove vscode specific linting directives
1 parent 6d219b4 commit 717ddb2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

openshift_metrics/merge.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -209,13 +209,13 @@ def main():
209209
logger.info("Using nerc rates for rates and outages")
210210
rates_data = rates.load_from_url()
211211
invoice_rates = invoice.Rates(
212-
cpu=rates_data.get_value_at("CPU SU Rate", report_month, Decimal), # type: ignore
213-
gpu_a100=rates_data.get_value_at("GPUA100 SU Rate", report_month, Decimal), # type: ignore
214-
gpu_a100sxm4=rates_data.get_value_at( # type: ignore
212+
cpu=rates_data.get_value_at("CPU SU Rate", report_month, Decimal),
213+
gpu_a100=rates_data.get_value_at("GPUA100 SU Rate", report_month, Decimal),
214+
gpu_a100sxm4=rates_data.get_value_at(
215215
"GPUA100SXM4 SU Rate", report_month, Decimal
216216
),
217-
gpu_v100=rates_data.get_value_at("GPUV100 SU Rate", report_month, Decimal), # type: ignore
218-
gpu_h100=rates_data.get_value_at("GPUH100 SU Rate", report_month, Decimal), # type: ignore
217+
gpu_v100=rates_data.get_value_at("GPUV100 SU Rate", report_month, Decimal),
218+
gpu_h100=rates_data.get_value_at("GPUH100 SU Rate", report_month, Decimal),
219219
)
220220
outage_data = outages.load_from_url()
221221
ignore_hours = outage_data.get_outages_during(

0 commit comments

Comments
 (0)