Skip to content
Closed
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
2 changes: 2 additions & 0 deletions aeolis/avalanching.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ def angele_of_repose(s,p):

s['theta_stat'] = theta_stat
s['theta_dyn'] = theta_dyn

a = 5
Copy link

Copilot AI Oct 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The variable a is assigned but never used. This dead code should be removed as it serves no purpose and reduces code clarity.

Suggested change
a = 5

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Oct 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The indentation uses a tab character instead of spaces. Python's PEP 8 style guide recommends using 4 spaces for indentation to maintain consistency with the rest of the codebase.

Suggested change
a = 5
a = 5

Copilot uses AI. Check for mistakes.

return s

Expand Down
Loading