Exemplo n.º 1
0
def _list(state, format, filter):
    """Lists the employees on the Departing Employee list."""
    employee_generator = _get_departing_employees(state.sdk, filter)
    list_employees(
        employee_generator,
        format,
        {"departureDate": "Departure Date"},
    )
Exemplo n.º 2
0
def _list(state, format, filter):
    """Lists the employees on the High Risk Employee list."""

    employee_generator = _get_high_risk_employees(state.sdk, filter)
    list_employees(employee_generator, format)