Skip to content

Commit ce31aa1

Browse files
Merge branch 'TheAlgorithms:master' into fix-mypy-errs-5
2 parents bfa0796 + 7cdb011 commit ce31aa1

File tree

10 files changed

+13
-12
lines changed

10 files changed

+13
-12
lines changed

Diff for: .github/stale.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pulls:
4545
closeComment: >
4646
Please reopen this pull request once you commit the changes requested
4747
or make improvements on the code. If this is not the case and you need
48-
some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms)
48+
some help, feel free to seek help from our [Gitter](https://app.gitter.im/#/room/#TheAlgorithms_community:gitter.im)
4949
or ping one of the reviewers. Thank you for your contributions!
5050
5151
issues:
@@ -59,5 +59,5 @@ issues:
5959
closeComment: >
6060
Please reopen this issue once you add more information and updates here.
6161
If this is not the case and you need some help, feel free to seek help
62-
from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the
62+
from our [Gitter](https://app.gitter.im/#/room/#TheAlgorithms_community:gitter.im) or ping one of the
6363
reviewers. Thank you for your contributions!

Diff for: .pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
- id: auto-walrus
1717

1818
- repo: https://github.com/charliermarsh/ruff-pre-commit
19-
rev: v0.0.257
19+
rev: v0.0.259
2020
hooks:
2121
- id: ruff
2222

Diff for: CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Before contributing
44

5-
Welcome to [TheAlgorithms/Python](https://github.com/TheAlgorithms/Python)! Before sending your pull requests, make sure that you __read the whole guidelines__. If you have any doubt on the contributing guide, please feel free to [state it clearly in an issue](https://github.com/TheAlgorithms/Python/issues/new) or ask the community in [Gitter](https://gitter.im/TheAlgorithms).
5+
Welcome to [TheAlgorithms/Python](https://github.com/TheAlgorithms/Python)! Before sending your pull requests, make sure that you __read the whole guidelines__. If you have any doubt on the contributing guide, please feel free to [state it clearly in an issue](https://github.com/TheAlgorithms/Python/issues/new) or ask the community in [Gitter](https://app.gitter.im/#/room/#TheAlgorithms_community:gitter.im).
66

77
## Contributing
88

@@ -176,7 +176,7 @@ We want your work to be readable by others; therefore, we encourage you to note
176176

177177
- Most importantly,
178178
- __Be consistent in the use of these guidelines when submitting.__
179-
- __Join__ us on [Discord](https://discord.com/invite/c7MnfGFGa6) and [Gitter](https://gitter.im/TheAlgorithms) __now!__
179+
- __Join__ us on [Discord](https://discord.com/invite/c7MnfGFGa6) and [Gitter](https://app.gitter.im/#/room/#TheAlgorithms_community:gitter.im) __now!__
180180
- Happy coding!
181181

182182
Writer [@poyea](https://github.com/poyea), Jun 2019.

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<a href="https://discord.gg/c7MnfGFGa6">
1717
<img src="https://img.shields.io/discord/808045925556682782.svg?logo=discord&colorB=7289DA&style=flat-square" height="20" alt="Discord chat">
1818
</a>
19-
<a href="https://gitter.im/TheAlgorithms">
19+
<a href="https://app.gitter.im/#/room/#TheAlgorithms_community:gitter.im">
2020
<img src="https://img.shields.io/badge/Chat-Gitter-ff69b4.svg?label=Chat&logo=gitter&style=flat-square" height="20" alt="Gitter chat">
2121
</a>
2222
<!-- Second row: -->
@@ -42,7 +42,7 @@ Read through our [Contribution Guidelines](CONTRIBUTING.md) before you contribut
4242

4343
## Community Channels
4444

45-
We are on [Discord](https://discord.gg/c7MnfGFGa6) and [Gitter](https://gitter.im/TheAlgorithms)! Community channels are a great way for you to ask questions and get help. Please join us!
45+
We are on [Discord](https://discord.gg/c7MnfGFGa6) and [Gitter](https://app.gitter.im/#/room/#TheAlgorithms_community:gitter.im)! Community channels are a great way for you to ask questions and get help. Please join us!
4646

4747
## List of Algorithms
4848

Diff for: hashes/sha1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def final_hash(self):
124124
self.h[3] + d & 0xFFFFFFFF,
125125
self.h[4] + e & 0xFFFFFFFF,
126126
)
127-
return "%08x%08x%08x%08x%08x" % tuple(self.h)
127+
return ("{:08x}" * 5).format(*self.h)
128128

129129

130130
def test_sha1_hash():

Diff for: machine_learning/sequential_minimum_optimization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ def test_cancel_data():
458458
CANCER_DATASET_URL,
459459
headers={"User-Agent": "Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)"},
460460
)
461-
response = urllib.request.urlopen(request)
461+
response = urllib.request.urlopen(request) # noqa: S310
462462
content = response.read().decode("utf-8")
463463
with open(r"cancel_data.csv", "w") as f:
464464
f.write(content)

Diff for: neural_network/convolution_neural_network.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def save_model(self, save_path):
7777
def read_model(cls, model_path):
7878
# read saved model
7979
with open(model_path, "rb") as f:
80-
model_dic = pickle.load(f)
80+
model_dic = pickle.load(f) # noqa: S301
8181

8282
conv_get = model_dic.get("conv1")
8383
conv_get.append(model_dic.get("step_conv1"))

Diff for: project_euler/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The solutions will be checked by our [automated testing on GitHub Actions](https
1010

1111
## Solution Guidelines
1212

13-
Welcome to [TheAlgorithms/Python](https://github.com/TheAlgorithms/Python)! Before reading the solution guidelines, make sure you read the whole [Contributing Guidelines](https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md) as it won't be repeated in here. If you have any doubt on the guidelines, please feel free to [state it clearly in an issue](https://github.com/TheAlgorithms/Python/issues/new) or ask the community in [Gitter](https://gitter.im/TheAlgorithms). You can use the [template](https://github.com/TheAlgorithms/Python/blob/master/project_euler/README.md#solution-template) we have provided below as your starting point but be sure to read the [Coding Style](https://github.com/TheAlgorithms/Python/blob/master/project_euler/README.md#coding-style) part first.
13+
Welcome to [TheAlgorithms/Python](https://github.com/TheAlgorithms/Python)! Before reading the solution guidelines, make sure you read the whole [Contributing Guidelines](https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md) as it won't be repeated in here. If you have any doubt on the guidelines, please feel free to [state it clearly in an issue](https://github.com/TheAlgorithms/Python/issues/new) or ask the community in [Gitter](https://app.gitter.im/#/room/#TheAlgorithms_community:gitter.im). You can use the [template](https://github.com/TheAlgorithms/Python/blob/master/project_euler/README.md#solution-template) we have provided below as your starting point but be sure to read the [Coding Style](https://github.com/TheAlgorithms/Python/blob/master/project_euler/README.md#coding-style) part first.
1414

1515
### Coding Style
1616

Diff for: pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ ignore = [ # `ruff rule S101` for a description of that rule
3434
"S101", # S101: Use of `assert` detected -- DO NOT FIX
3535
"S105", # S105: Possible hardcoded password: 'password'
3636
"S113", # S113: Probable use of requests call without timeout
37+
"S311", # S311: Standard pseudo-random generators are not suitable for cryptographic purposes
3738
"UP038", # UP038: Use `X | Y` in `{}` call instead of `(X, Y)` -- DO NOT FIX
3839
]
3940
select = [ # https://beta.ruff.rs/docs/rules

Diff for: web_programming/download_images_from_google_query.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def download_images_from_google_query(query: str = "dhaka", max_images: int = 5)
8686
path_name = f"query_{query.replace(' ', '_')}"
8787
if not os.path.exists(path_name):
8888
os.makedirs(path_name)
89-
urllib.request.urlretrieve(
89+
urllib.request.urlretrieve( # noqa: S310
9090
original_size_img, f"{path_name}/original_size_img_{index}.jpg"
9191
)
9292
return index

0 commit comments

Comments
 (0)