Skip to content

Remove unused ipc calls (STATISTICS/KILL) #381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions aikido_zen/background_process/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
from .read_property import process_read_property
from .user import process_user
from .should_ratelimit import process_should_ratelimit
from .kill import process_kill
from .statistics import process_statistics
from .ping import process_ping
from .sync_data import process_sync_data

Expand All @@ -15,8 +13,6 @@
# Commands that don't return data :
"ATTACK": (process_attack, False),
"USER": (process_user, False),
"KILL": (process_kill, False),
"STATISTICS": (process_statistics, False),
# Commands that return data :
"SYNC_DATA": (process_sync_data, True),
"READ_PROPERTY": (process_read_property, True),
Expand Down
10 changes: 0 additions & 10 deletions aikido_zen/background_process/commands/kill.py

This file was deleted.

13 changes: 0 additions & 13 deletions aikido_zen/background_process/commands/statistics.py

This file was deleted.

Loading