Skip to content

Commit

Permalink
Sort __all__ list alphabetically (#230)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tombruijn authored Nov 28, 2024
1 parent fbec34c commit c681722
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/appsignal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]

Expand Down

0 comments on commit c681722

Please sign in to comment.