Skip to content
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

Enable ruff INP001 rule #11346

Merged
merged 6 commits into from
Apr 2, 2024
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
Empty file.
Empty file.
Empty file.
Empty file added electronics/__init__.py
Empty file.
3 changes: 1 addition & 2 deletions electronics/circular_convolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ def circular_convolution(self) -> list[float]:
using matrix method

Usage:
>>> import circular_convolution as cc
>>> convolution = cc.CircularConvolution()
>>> convolution = CircularConvolution()
>>> convolution.circular_convolution()
[10, 10, 6, 14]

Expand Down
Empty file added fractals/__init__.py
Empty file.
Empty file added geometry/__init__.py
Empty file.
Empty file added greedy_methods/__init__.py
Empty file.
Empty file.
Empty file added linear_programming/__init__.py
Empty file.
Empty file.
Empty file.
Empty file.
3 changes: 2 additions & 1 deletion neural_network/activation_functions/mish.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"""

import numpy as np
from softplus import softplus

from .softplus import softplus


def mish(vector: np.ndarray) -> np.ndarray:
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ lint.ignore = [ # `ruff rule S101` for a description of that rule
"EM101", # Exception must not use a string literal, assign to variable first
"EXE001", # Shebang is present but file is not executable" -- FIX ME
"G004", # Logging statement uses f-string
"INP001", # File `x/y/z.py` is part of an implicit namespace package. Add an `__init__.py`. -- FIX ME
"PGH003", # Use specific rule codes when ignoring type issues -- FIX ME
"PLC1901", # `{}` can be simplified to `{}` as an empty string is falsey
"PLW060", # Using global for `{name}` but no assignment is done -- DO NOT FIX
Expand Down