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
3 changes: 3 additions & 0 deletions sum/sum.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# two number sum

Check failure on line 1 in sum/sum.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (INP001)

sum/sum.py:1:1: INP001 File `sum/sum.py` is part of an implicit namespace package. Add an `__init__.py`.
def sum(a: int, b: int):

Check failure on line 2 in sum/sum.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (A001)

sum/sum.py:2:5: A001 Variable `sum` is shadowing a Python builtin
return a + b
Loading