Skip to content

Commit bee2d57

Browse files
committed
script: update flake8 to 6.1.0
and touch up the spelling returned by lint-spelling.py
1 parent 38c3fd8 commit bee2d57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/lint/04_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ python3 --version
3535

3636
${CI_RETRY_EXE} pip3 install \
3737
codespell==2.2.5 \
38-
flake8==6.0.0 \
38+
flake8==6.1.0 \
3939
lief==0.13.2 \
4040
mypy==1.4.1 \
4141
pyzmq==25.1.0 \

src/test/fuzz/descriptor_parse.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class MockedDescriptorConverter {
8585
std::string desc;
8686
desc.reserve(mocked_desc.size());
8787

88-
// Replace all occurences of '%' followed by two hex characters with the corresponding key.
88+
// Replace all occurrences of '%' followed by two hex characters with the corresponding key.
8989
for (size_t i = 0; i < mocked_desc.size();) {
9090
if (mocked_desc[i] == '%') {
9191
if (i + 3 >= mocked_desc.size()) return {};

0 commit comments

Comments
 (0)