Skip to content

Commit bf78a0f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ec2ed34 commit bf78a0f

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

docs/packs/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.cibuildwheel]
2-
test-requires = "pytest"
3-
test-command = "pytest {project}/tests"
42
build-verbosity = 1
3+
test-command = "pytest {project}/tests"
4+
test-requires = "pytest"
55
# support Universal2 for Apple Silicon:
66
macos.archs = [ "auto", "universal2" ]
77
macos.test-skip = [ "*universal2:arm64" ]

docs/packs/templating/advanced.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Variables, for example, can be validated in a pre-generate hook:
1919
import re
2020
import sys
2121
22-
2322
MODULE_REGEX = r"^[_a-zA-Z][_a-zA-Z0-9]+$"
2423
2524
module_name = "{{ cookiecutter.module_name }}"

docs/types/sequences-sets/tuples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ the right-hand side of the assignment operator. Here is a simple example:
102102

103103
.. code-block:: pycon
104104
105-
>>> (v, w, x, y, z) = (1, "2.", 3.0, ["4a", "4b"], (5.1, 5.2))
105+
>>> v, w, x, y, z = (1, "2.", 3.0, ["4a", "4b"], (5.1, 5.2))
106106
>>> v
107107
1
108108
>>> w

0 commit comments

Comments
 (0)