summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/language_basics/kwargs_2.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/userguide/language_basics/kwargs_2.pyx')
-rw-r--r--docs/examples/userguide/language_basics/kwargs_2.pyx10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/examples/userguide/language_basics/kwargs_2.pyx b/docs/examples/userguide/language_basics/kwargs_2.pyx
index a2c639ea6..902df694c 100644
--- a/docs/examples/userguide/language_basics/kwargs_2.pyx
+++ b/docs/examples/userguide/language_basics/kwargs_2.pyx
@@ -1,5 +1,5 @@
-def g(a, b, *, c, d):
- ...
-
-# We cannot call g with less verbosity than this.
-foo = g(4.0, "something", c=68, d="other")
+def g(a, b, *, c, d):
+ ...
+
+# We cannot call g with less verbosity than this.
+foo = g(4.0, "something", c=68, d="other")