Skip to content

Commit fdeba5b

Browse files
committed
TOML and CFG/INI files use 4 space indent
Closes #7
1 parent a9e0a9b commit fdeba5b

File tree

2 files changed

+53
-53
lines changed

2 files changed

+53
-53
lines changed

.flake8

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
[flake8]
22
filename =
3-
./scripts/*.py,
4-
./src/*.py,
5-
./tests/*.py
3+
./scripts/*.py,
4+
./src/*.py,
5+
./tests/*.py
66
per-file-ignores =
7-
scripts/*: D
8-
tests/*: D
7+
scripts/*: D
8+
tests/*: D
99

1010
# Google docstring convention + D204 & D401
1111
docstring-convention = all
1212
ignore =
13-
D100
14-
D104
15-
D203
16-
D213
17-
D215
18-
D406
19-
D407
20-
D408
21-
D409
22-
D413
23-
U101
13+
D100
14+
D104
15+
D203
16+
D213
17+
D215
18+
D406
19+
D407
20+
D408
21+
D409
22+
D413
23+
U101
2424

2525
max_line_length = 150
2626
unused-arguments-ignore-overload-functions = True

pyproject.toml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
[project]
2-
authors = [{name = "Apify Technologies s.r.o.", email = "[email protected]"}]
2+
authors = [{ name = "Apify Technologies s.r.o.", email = "[email protected]" }]
33
classifiers = [
4-
"Development Status :: 5 - Production/Stable",
5-
"Intended Audience :: Developers",
6-
"License :: OSI Approved :: Apache Software License",
7-
"Operating System :: OS Independent",
8-
"Programming Language :: Python :: 3.8",
9-
"Programming Language :: Python :: 3.9",
10-
"Programming Language :: Python :: 3.10",
11-
"Programming Language :: Python :: 3.11",
12-
"Topic :: Software Development :: Libraries",
4+
"Development Status :: 5 - Production/Stable",
5+
"Intended Audience :: Developers",
6+
"License :: OSI Approved :: Apache Software License",
7+
"Operating System :: OS Independent",
8+
"Programming Language :: Python :: 3.8",
9+
"Programming Language :: Python :: 3.9",
10+
"Programming Language :: Python :: 3.10",
11+
"Programming Language :: Python :: 3.11",
12+
"Topic :: Software Development :: Libraries",
1313
]
1414
dependencies = []
1515
description = "Tools and constants shared across Apify projects."
1616
keywords = ["apify", "api", "shared", "scraping", "automation"]
17-
license = {text = "Apache Software License"}
17+
license = { text = "Apache Software License" }
1818
name = "apify_shared"
1919
readme = "README.md"
2020
requires-python = ">=3.8"
2121
version = "1.0.3"
2222

2323
[project.optional-dependencies]
2424
dev = [
25-
"autopep8 ~= 2.0.2",
26-
"build ~= 0.10.0",
27-
"flake8 ~= 6.0.0",
28-
"flake8-bugbear ~= 23.5.9",
29-
"flake8-commas ~= 2.1.0",
30-
"flake8-comprehensions ~= 3.12.0",
31-
"flake8-datetimez ~= 20.10.0",
32-
"flake8-docstrings ~= 1.7.0",
33-
"flake8-encodings ~= 0.5.0",
34-
"flake8-isort ~= 6.0.0",
35-
"flake8-noqa ~= 1.3.1",
36-
"flake8-pytest-style ~= 1.7.2",
37-
"flake8-quotes ~= 3.3.2",
38-
"flake8-simplify ~= 0.20.0",
39-
"flake8-unused-arguments ~= 0.0.13",
40-
"isort ~= 5.12.0",
41-
"mypy ~= 1.4.0",
42-
"pep8-naming ~= 0.13.3",
43-
"pre-commit ~= 3.3.2",
44-
"pytest ~= 7.3.1",
45-
"pytest-asyncio ~= 0.21.0",
46-
"pytest-only ~= 2.0.0",
47-
"pytest-randomly ~= 3.12.0",
48-
"pytest-timeout ~= 2.1.0",
49-
"pytest-xdist ~= 3.3.1",
50-
"twine ~= 4.0.2",
25+
"autopep8 ~= 2.0.2",
26+
"build ~= 0.10.0",
27+
"flake8 ~= 6.0.0",
28+
"flake8-bugbear ~= 23.5.9",
29+
"flake8-commas ~= 2.1.0",
30+
"flake8-comprehensions ~= 3.12.0",
31+
"flake8-datetimez ~= 20.10.0",
32+
"flake8-docstrings ~= 1.7.0",
33+
"flake8-encodings ~= 0.5.0",
34+
"flake8-isort ~= 6.0.0",
35+
"flake8-noqa ~= 1.3.1",
36+
"flake8-pytest-style ~= 1.7.2",
37+
"flake8-quotes ~= 3.3.2",
38+
"flake8-simplify ~= 0.20.0",
39+
"flake8-unused-arguments ~= 0.0.13",
40+
"isort ~= 5.12.0",
41+
"mypy ~= 1.4.0",
42+
"pep8-naming ~= 0.13.3",
43+
"pre-commit ~= 3.3.2",
44+
"pytest ~= 7.3.1",
45+
"pytest-asyncio ~= 0.21.0",
46+
"pytest-only ~= 2.0.0",
47+
"pytest-randomly ~= 3.12.0",
48+
"pytest-timeout ~= 2.1.0",
49+
"pytest-xdist ~= 3.3.1",
50+
"twine ~= 4.0.2",
5151
]
5252

5353
[project.urls]

0 commit comments

Comments
 (0)