Skip to content

Commit 04c8587

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

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

docs/packs/dataprep/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies = [
2626
"pandas",
2727
]
2828
urls."Bug Tracker" = "https://github.com/veit/dataprep/issues"
29-
urls."Homepage" = "https://github.com/veit/dataprep"
29+
urls.Homepage = "https://github.com/veit/dataprep"
3030
License-Expression = "BSD-3-Clause"
3131
License-File = [ "LICENSE" ]
3232

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)