Skip to content

Delete empty junk file #9062

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 9 commits into from
Sep 16, 2023
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
1 change: 0 additions & 1 deletion DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* [In Static Equilibrium](arithmetic_analysis/in_static_equilibrium.py)
* [Intersection](arithmetic_analysis/intersection.py)
* [Jacobi Iteration Method](arithmetic_analysis/jacobi_iteration_method.py)
* [Junk](arithmetic_analysis/junk.py)
* [Lu Decomposition](arithmetic_analysis/lu_decomposition.py)
* [Newton Forward Interpolation](arithmetic_analysis/newton_forward_interpolation.py)
* [Newton Method](arithmetic_analysis/newton_method.py)
Expand Down
Empty file removed arithmetic_analysis/junk.py
Empty file.
8 changes: 5 additions & 3 deletions computer_vision/haralick_descriptors.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ def binarize(image: np.ndarray, threshold: float = 127.0) -> np.ndarray:
return np.where(image > threshold, 1, 0)


def transform(image: np.ndarray, kind: str, kernel: np.ndarray = None) -> np.ndarray:
def transform(
image: np.ndarray, kind: str, kernel: np.ndarray | None = None
) -> np.ndarray:
"""
Simple image transformation using one of two available filter functions:
Erosion and Dilation.
Expand Down Expand Up @@ -154,7 +156,7 @@ def transform(image: np.ndarray, kind: str, kernel: np.ndarray = None) -> np.nda
return transformed


def opening_filter(image: np.ndarray, kernel: np.ndarray = None) -> np.ndarray:
def opening_filter(image: np.ndarray, kernel: np.ndarray | None = None) -> np.ndarray:
"""
Opening filter, defined as the sequence of
erosion and then a dilation filter on the same image.
Expand All @@ -172,7 +174,7 @@ def opening_filter(image: np.ndarray, kernel: np.ndarray = None) -> np.ndarray:
return transform(transform(image, "dilation", kernel), "erosion", kernel)


def closing_filter(image: np.ndarray, kernel: np.ndarray = None) -> np.ndarray:
def closing_filter(image: np.ndarray, kernel: np.ndarray | None = None) -> np.ndarray:
"""
Opening filter, defined as the sequence of
dilation and then erosion filter on the same image.
Expand Down
6 changes: 3 additions & 3 deletions conversions/convert_number_to_words.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def max_value(cls, system: str) -> int:


class NumberWords(Enum):
ONES: ClassVar = {
ONES: ClassVar[dict[int, str]] = {
0: "",
1: "one",
2: "two",
Expand All @@ -67,7 +67,7 @@ class NumberWords(Enum):
9: "nine",
}

TEENS: ClassVar = {
TEENS: ClassVar[dict[int, str]] = {
0: "ten",
1: "eleven",
2: "twelve",
Expand All @@ -80,7 +80,7 @@ class NumberWords(Enum):
9: "nineteen",
}

TENS: ClassVar = {
TENS: ClassVar[dict[int, str]] = {
2: "twenty",
3: "thirty",
4: "forty",
Expand Down
2 changes: 1 addition & 1 deletion graphs/tarjans_scc.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def create_graph(n, edges):
n_vertices = 7
source = [0, 0, 1, 2, 3, 3, 4, 4, 6]
target = [1, 3, 2, 0, 1, 4, 5, 6, 5]
edges = [(u, v) for u, v in zip(source, target)]
edges = list(zip(source, target))
g = create_graph(n_vertices, edges)

assert [[5], [6], [4], [3, 2, 1, 0]] == tarjan(g)