Skip to content

Commit 05b8385

Browse files
committed
Update flake8
1 parent e5558c4 commit 05b8385

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

seleniumbase/core/s3_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,5 @@ def save_uploaded_file_names(self, files):
9292
"""Keep a record of all file names that have been uploaded.
9393
Upload log files related to each test after its execution.
9494
Once done, use already_uploaded_files to create an index file."""
95-
global already_uploaded_files
95+
global already_uploaded_files # noqa
9696
already_uploaded_files.extend(files)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
print("\nERROR! Publishing to PyPI requires Python>=3.9")
3535
sys.exit()
3636
print("\n*** Checking code health with flake8:\n")
37-
os.system("python -m pip install 'flake8==7.1.2'")
37+
os.system("python -m pip install 'flake8==7.2.0'")
3838
flake8_status = os.system("flake8 --exclude=recordings,temp")
3939
if flake8_status != 0:
4040
print("\nERROR! Fix flake8 issues before publishing to PyPI!\n")

0 commit comments

Comments
 (0)