From c681722594955d955afcd68944abffc9973ecfb7 Mon Sep 17 00:00:00 2001 From: Tom de Bruijn Date: Thu, 28 Nov 2024 09:11:08 +0100 Subject: [PATCH] Sort __all__ list alphabetically (#230) Make ruff happy. It updated automated on the CI and now it's failing because this list wasn't sorted. Sort it to pass the CI. --- src/appsignal/__init__.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/appsignal/__init__.py b/src/appsignal/__init__.py index 3bfe3ae..3f7e47c 100644 --- a/src/appsignal/__init__.py +++ b/src/appsignal/__init__.py @@ -27,26 +27,26 @@ __all__ = [ "Appsignal", + "Heartbeat", + "add_distribution_value", + "check_in", + "heartbeat", + "increment_counter", + "send_error", + "send_error_with_context", "set_body", - "set_sql_body", "set_category", "set_custom_data", + "set_error", + "set_gauge", "set_header", "set_name", "set_namespace", "set_params", "set_root_name", "set_session_data", + "set_sql_body", "set_tag", - "set_error", - "send_error", - "send_error_with_context", - "increment_counter", - "set_gauge", - "add_distribution_value", - "Heartbeat", - "heartbeat", - "check_in", "start", ]