Remove unused Python imports flagged by CodeQL - #17
Merged
Liang-Chun Tsai (ltsai-dev) merged 1 commit intoAug 18, 2026
Merged
Conversation
Remove imports reported by the open CodeQL py/unused-import alerts. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: ba3b0841-5476-4170-8846-621d3f31292d
Liang-Chun Tsai (ltsai-dev)
requested review from
a team
and
a lite review from Copilot
August 18, 2026 21:54
Copilot started reviewing on behalf of
Liang-Chun Tsai (ltsai-dev)
August 18, 2026 21:55
View session
There was a problem hiding this comment.
Pull request overview
This pull request removes Python imports that are unused (as flagged by CodeQL’s py/unused-import) across a large set of files, aiming to eliminate the current backlog of unused-import alerts without changing runtime behavior.
Changes:
- Removed unused test-only imports (e.g.,
pytestin tests that rely on pytest’s fixture injection without referencing the module). - Removed unused imports in tool and model modules (e.g., unused
datetime, typing symbols, and unused sandbox/tooling helpers). - Cleaned up unused imports in dataset test-case rubric files.
Reviewed changes
Copilot reviewed 281 out of 281 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tests/test_validate_tags.py | Removes unused pytest import from unit tests. |
| tests/test_validate_scenario_tags.py | Removes unused pytest import from unit tests. |
| servers/tb_business_ops_servers_202606/tests/zendesk/test_update_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/zendesk/test_update_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/zendesk/test_unstable_fields.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/zendesk/test_search_articles.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/zendesk/test_get_tables.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/zendesk/test_get_items.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/zendesk/test_get_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/zendesk/test_delete_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/zendesk/test_create_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_workday_api_get_org_structure.py | Removes unused sandbox fixture/type imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_workday_api_get_manager_chain.py | Removes unused sandbox fixture/type imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_workday_api_get_employee.py | Removes unused sandbox fixture/type imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_security_api_verify_incident.py | Removes unused datetime imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_okta_security_api_execute_action.py | Removes unused datetime imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_okta_api_revoke_access.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_okta_api_provision_access.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_okta_api_get_user_groups.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_okta_api_check_access.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_okta_api_add_to_group.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_license_management_api_check_license_type.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_license_management_api_check_availability.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_license_management_api_allocate_license.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_hardware_procurement_api_create_order.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_email_notification_api_send_notification.py | Removes unused tool import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_asset_management_api_retire_device.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_asset_management_api_get_employee_devices.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_asset_management_api_get_device_details.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_asset_management_api_check_inventory.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_asset_management_api_assign_device.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_approver_lookup_api_get_security_contact.py | Removes unused sandbox fixture/type imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_approver_lookup_api_get_contact_details.py | Removes unused sandbox fixture/type imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_approval_api_create_request.py | Removes unused sandbox fixture/type imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/test_approval_api_check_status.py | Removes unused sandbox fixture/type imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/main/conftest.py | Removes unused imports from shared test fixtures. |
| servers/tb_business_ops_servers_202606/tests/sandbox_neobank_support/knowledge_base/test_search_policy.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/zendesk/test_update_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/zendesk/test_unstable_fields.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/zendesk/test_search_articles.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/zendesk/test_get_tables.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/zendesk/test_get_items.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/zendesk/test_get_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/zendesk/test_delete_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/zendesk/test_create_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/workday/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/software_catalog/test_search.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/software_catalog/test_get_details.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/salesforce_crm/test_get_engagement.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/salesforce_crm/test_check_employee_assignment.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/okta/test_provision_access.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/nda/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/mavenlink/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/license_management/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/knowledge_base/test_search_policy.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/hardware_procurement/test_create_order.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/degreed/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/concur/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/client_access/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/box/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/background_check/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/asset_management/test_api.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/approver_lookup/test_get_contact.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/approval/test_get_status.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_consulting/approval/test_create_request.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/zendesk/test_update_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/zendesk/test_unstable_fields.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/zendesk/test_search_articles.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/zendesk/test_get_tables.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/zendesk/test_get_items.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/zendesk/test_get_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/zendesk/test_delete_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/zendesk/test_create_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/policy/test_policy_operations.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/policy/test_get_policy_details.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/policy/test_generate_document_link.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/policy/test_add_vehicle.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/lookup/test_validate_vin.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/knowledge_base/test_search_policy.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/crm/test_verify_identity.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/crm/test_get_customer_profile.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/crm/test_get_customer_by_email.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/claims/test_get_vehicle_claims.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/claims/test_get_policy_claims.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/claims/test_get_driver_claims.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/claims/test_create_fnol.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/claims/test_check_open_major_claims.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/billing/test_reset_account_status.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/billing/test_grant_extension.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/billing/test_get_arrangement_history.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/billing/test_get_account_details.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/sandbox_auto_insurance/billing/test_create_installment_plan.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_retail_toolset/promo/test_get_discount_application.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_retail_toolset/extend/test_check_warranty_coverage.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/zendesk/test_update_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/zendesk/test_unstable_fields.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/zendesk/test_search_articles.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/zendesk/test_get_tables.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/zendesk/test_get_items.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/zendesk/test_get_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/zendesk/test_delete_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/zendesk/test_create_item.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/payment_api/test_update_payment_method.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/payment_api/test_unstable_fields.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/payment_api/test_process_refund.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/payment_api/test_process_charge.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/payment_api/test_process_charge_dispute.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/payment_api/test_get_transaction_history.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/payment_api/test_generate_invoice.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/payment_api/test_check_payment_status.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/lookup/test_validate_booking_reference.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/lookup/test_lookup_hotel_id.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/lookup/test_lookup_group_booking_id.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/lookup/test_lookup_corporate_account_id.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/knowledge_base/test_search_policy.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/hotel_partner_api/test_verify_availability.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/hotel_partner_api/test_get_hotel_info.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/hotel_partner_api/test_get_hotel_contact.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/hotel_partner_api/test_escalate_to_hotel.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/crm_api/test_update_customer_info.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/crm_api/test_unstable_fields.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/crm_api/test_get_customer_profile.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/crm_api/test_get_customer_preferences.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/crm_api/test_check_vip_status.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/corporate_api/test_verify_account_status.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/corporate_api/test_get_corporate_booking_history.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/corporate_api/test_get_corporate_account_details.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/corporate_api/test_generate_corporate_invoice.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/conftest.py | Removes unused model imports from shared fixtures module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/booking_api/test_unstable_fields.py | Removes unused import(s) from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/booking_api/test_search_hotels_by_location.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/booking_api/test_modify_group_booking.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/booking_api/test_modify_booking.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/booking_api/test_get_group_booking.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/booking_api/test_get_booking.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/booking_api/test_get_booking_history.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tests/external_booking/booking_api/test_check_hotel_availability.py | Removes unused sandbox imports from test module. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/zendesk/tools/update_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/zendesk/tools/create_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/zendesk/models.py | Removes unused import(s) from model definitions. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/zendesk/tools/update_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/zendesk/tools/search_articles.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/zendesk/tools/get_tables.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/zendesk/tools/get_items.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/zendesk/tools/get_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/zendesk/tools/delete_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/zendesk/tools/create_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/zendesk/models.py | Removes unused import(s) from model definitions. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/workday_api_get_org_structure.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/workday_api_get_manager_chain.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/workday_api_get_employee.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/security_api_verify_incident.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/okta_security_api_execute_action.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/okta_api_revoke_access.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/okta_api_provision_access.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/okta_api_get_user_groups.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/okta_api_check_access.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/okta_api_add_to_group.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/license_management_api_check_license_type.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/license_management_api_check_availability.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/license_management_api_allocate_license.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/hardware_procurement_api_create_order.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/email_notification_api_send_notification.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/asset_management_api_retire_device.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/asset_management_api_get_employee_devices.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/asset_management_api_get_device_details.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/asset_management_api_check_inventory.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/asset_management_api_assign_device.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/approver_lookup_api_get_security_contact.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/approver_lookup_api_get_contact_details.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/approval_api_create_request.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_neobank_support/main/tools/approval_api_check_status.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/zendesk/tools/update_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/zendesk/tools/search_articles.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/zendesk/tools/get_tables.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/zendesk/tools/get_items.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/zendesk/tools/get_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/zendesk/tools/delete_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/zendesk/tools/create_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/zendesk/models.py | Removes unused typing imports from model definitions. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/workday/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/software_catalog/tools/search.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/software_catalog/tools/get_details.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/salesforce_crm/tools/get_engagement.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/salesforce_crm/tools/check_employee_assignment.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/okta/tools/provision_access.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/nda/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/mavenlink/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/license_management/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/knowledge_base/tools/search_policy.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/hardware_procurement/tools/create_order.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/degreed/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/concur/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/client_access/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/box/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/background_check/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/asset_management/tools/api.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/approver_lookup/tools/get_contact.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/approval/tools/get_status.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_consulting/approval/tools/create_request.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/zendesk/tools/update_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/zendesk/tools/search_articles.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/zendesk/tools/get_tables.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/zendesk/tools/get_items.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/zendesk/tools/get_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/zendesk/tools/delete_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/zendesk/tools/create_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/zendesk/models.py | Removes unused typing imports from model definitions. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/update_vehicle_status.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/update_driver_status.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/schedule_cancellation.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/reinstate_policy.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/get_vehicle_details.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/get_policy_vehicles.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/get_policy_drivers.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/get_policy_details.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/generate_document_link.py | Removes unused import(s) while retaining ISO parsing behavior. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/add_vehicle.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/policy/tools/add_driver.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/lookup/tools/validate_vin.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/knowledge_base/tools/search_policy.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/crm/tools/verify_identity.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/crm/tools/get_customer_profile.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/crm/tools/get_customer_by_email.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/claims/tools/get_vehicle_claims.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/claims/tools/get_policy_claims.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/claims/tools/get_driver_claims.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/claims/tools/create_fnol.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/claims/tools/check_open_major_claims.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/billing/tools/reset_account_status.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/billing/tools/grant_extension.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/billing/tools/get_arrangement_history.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/billing/tools/get_account_details.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/sandbox_auto_insurance/billing/tools/create_installment_plan.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_retail_toolset/salesforce/tools/add_points_to_balance.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_retail_toolset/oms/tools/update_shipping_speed.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_retail_toolset/oms/tools/update_order_address.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/zendesk/tools/update_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/zendesk/tools/search_articles.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/zendesk/tools/get_tables.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/zendesk/tools/get_items.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/zendesk/tools/get_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/zendesk/tools/delete_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/zendesk/tools/create_item.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/zendesk/models.py | Removes unused import(s) from model definitions. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/payment_api/tools/update_payment_method.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/payment_api/tools/process_refund.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/payment_api/tools/process_charge.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/payment_api/tools/process_charge_dispute.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/payment_api/tools/get_transaction_history.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/payment_api/tools/generate_invoice.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/payment_api/tools/check_payment_status.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/payment_api/models.py | Removes unused typing imports from model definitions. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/lookup/tools/validate_booking_reference.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/lookup/tools/lookup_hotel_id.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/lookup/tools/lookup_group_booking_id.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/lookup/tools/lookup_corporate_account_id.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/hotel_partner_api/tools/verify_availability.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/hotel_partner_api/tools/get_hotel_info.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/hotel_partner_api/tools/get_hotel_contact.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/hotel_partner_api/tools/escalate_to_hotel.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/hotel_partner_api/models.py | Removes unused import(s) from model definitions. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/crm_api/tools/update_customer_info.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/crm_api/tools/get_customer_profile.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/crm_api/tools/get_customer_preferences.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/crm_api/tools/check_vip_status.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/corporate_api/tools/verify_account_status.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/corporate_api/tools/get_corporate_booking_history.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/corporate_api/tools/get_account_details.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/corporate_api/tools/generate_corporate_invoice.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/corporate_api/models.py | Removes unused typing imports from model definitions. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/booking_api/tools/search_hotels_by_location.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/booking_api/tools/modify_group_booking.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/booking_api/tools/modify_booking.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/booking_api/tools/get_group_booking.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/booking_api/tools/get_booking.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/booking_api/tools/get_booking_history.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/external_booking/booking_api/tools/check_hotel_availability.py | Removes unused import(s) from tool implementation. |
| servers/tb_business_ops_servers_202606/tb_business_ops_servers_202606/toolslib/connectors/typesense/tools/search_policy.py | Removes unused import(s) from tool implementation. |
| dataset/test_case/sandbox_neobank_support_v1/sandbox_neobank_support_v1_group1_rubrics_yesno.py | Removes unused Text import from rubric helper. |
| dataset/test_case/external_booking_v1/external_booking_v1_group1_rubrics_yesno.py | Removes unused Text import from rubric helper. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
py/unused-importCodeQL alertsValidation
F401findings remain in CodeQL-affected filesthinkingboxpackage dependency