Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanbierce committed Mar 21, 2024
1 parent bbd1cac commit f046d22
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from datetime import datetime
from decimal import Decimal
from enum import Enum
from typing import Optional

from enum import Enum

class DeductionDetails:
companyId: str
Expand All @@ -22,4 +22,3 @@ class ExternalDeductionCodeToRipplingCode:
ripplingCode: str
ripplingDeductionField: DeductionCodeField


Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from abc import ABC, abstractmethod
from io import IOBase

from flux_sdk.benefits_administration.capabilities.process_employees_deductions.data_models import (
DeductionDetails,
ExternalDeductionCodeToRipplingCode
)
from io import IOBase


class ProcessEmployeesDeductions(ABC):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from abc import ABC, abstractmethod

from flux_sdk.benefits_administration.capabilities.report_employees_personal_and_employment_data.data_models import ( # noqa
ReportEmployeesPersonalAndEmploymentDataConfig,
EmployeePersonalAndEmploymentData
Expand All @@ -18,7 +17,8 @@ class ReportEmployeesPersonalAndEmploymentData(ABC):
@staticmethod
@abstractmethod
def format_employees_personal_and_employment_data(
config: ReportEmployeesPersonalAndEmploymentDataConfig, employee_data: list[EmployeePersonalAndEmploymentData]
config: ReportEmployeesPersonalAndEmploymentDataConfig,
employee_data: list[EmployeePersonalAndEmploymentData]
) -> File:
"""
This method receives the apps configuration data and a list of employee data.
Expand Down

0 comments on commit f046d22

Please sign in to comment.