Skip to content

Commit ab8c426

Browse files
authored
Add flake8-print to packages (#324)
1 parent d668323 commit ab8c426

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

generate_requirements.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ pip install \
1515
isort `# Utility to sort and organize imports into sections and types`\
1616
flake8-isort `# Plugin to run isort as part of the linting`\
1717
flake8-quotes `# Plugin to enforce specific quotes convention, which PEP8 doesn't`\
18+
flake8-print `# Plugin to prevent the use of print statements`\
1819
black `# Formatting`\
1920

2021

requirements_3.10.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ coverage==6.3.2
88
fastapi==0.75.1
99
flake8==4.0.1
1010
flake8-isort==4.1.1
11+
flake8-print==4.0.0
1112
flake8-quotes==3.3.1
1213
h11==0.13.0
1314
idna==3.3
@@ -32,6 +33,7 @@ pytest-asyncio==0.18.3
3233
pytest-cov==3.0.0
3334
pytest-mock==3.7.0
3435
PyYAML==6.0
36+
six==1.16.0
3537
sniffio==1.2.0
3638
starlette==0.17.1
3739
testfixtures==6.18.5

requirements_3.8.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ coverage==6.3.2
88
fastapi==0.75.1
99
flake8==4.0.1
1010
flake8-isort==4.1.1
11+
flake8-print==4.0.0
1112
flake8-quotes==3.3.1
1213
h11==0.13.0
1314
idna==3.3
@@ -32,6 +33,7 @@ pytest-asyncio==0.18.3
3233
pytest-cov==3.0.0
3334
pytest-mock==3.7.0
3435
PyYAML==6.0
36+
six==1.16.0
3537
sniffio==1.2.0
3638
starlette==0.17.1
3739
testfixtures==6.18.5

requirements_3.9.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ coverage==6.3.2
88
fastapi==0.75.1
99
flake8==4.0.1
1010
flake8-isort==4.1.1
11+
flake8-print==4.0.0
1112
flake8-quotes==3.3.1
1213
h11==0.13.0
1314
idna==3.3
@@ -32,6 +33,7 @@ pytest-asyncio==0.18.3
3233
pytest-cov==3.0.0
3334
pytest-mock==3.7.0
3435
PyYAML==6.0
36+
six==1.16.0
3537
sniffio==1.2.0
3638
starlette==0.17.1
3739
testfixtures==6.18.5

0 commit comments

Comments
 (0)