Skip to content

Commit 2ef8def

Browse files
committed
type ignore similar to how it's implemented in flux-apps
1 parent 39d0174 commit 2ef8def

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flux_sdk/pension/utils/ascensus.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ def _create_eds_for_value(
425425
eds.ssn = ssn
426426
eds.effective_date = effective_date
427427
eds.deduction_type = deduction_type
428-
eds.value = Decimal(value)
428+
eds.value = Decimal(value) #type: ignore
429429
eds.is_percentage = percentage
430430
return eds
431431

@@ -502,7 +502,7 @@ def parse_deductions_for_ascensus(uri: str, stream: IOBase) -> list[EmployeeDedu
502502
result: list[EmployeeDeductionSetting] = []
503503

504504
try:
505-
reader = csv.DictReader(stream)
505+
reader = csv.DictReader(stream) #type: ignore
506506
except Exception as e:
507507
logger.error(f"[UpdateDeductionElectionsImpl.parse_deductions] Parse deductions failed due to message {e}")
508508
return result

0 commit comments

Comments
 (0)