]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Improve examples to use 88 chars line length (#677) (#714)
authorsponsfreixes <sponsfreixes@users.noreply.github.com>
Sat, 16 Feb 2019 06:18:58 +0000 (22:18 -0800)
committerJelle Zijlstra <jelle.zijlstra@gmail.com>
Sat, 16 Feb 2019 06:18:58 +0000 (22:18 -0800)
The examples were wrapping at less than 88 characters, which is not the
default for black.

README.md

index 7f9b1d07aa9c0e602529cd074ca948a79de1a687..2ce91bb26cb6854a0be40012666b3a3de2887459 100644 (file)
--- a/README.md
+++ b/README.md
@@ -189,12 +189,12 @@ brackets and put that in a separate indented line.
 ```py3
 # in:
 
-TracebackException.from_exception(exc, limit, lookup_lines, capture_locals)
+ImportantClass.important_method(exc, limit, lookup_lines, capture_locals, extra_argument)
 
 # out:
 
-TracebackException.from_exception(
-    exc, limit, lookup_lines, capture_locals
+ImportantClass.important_method(
+    exc, limit, lookup_lines, capture_locals, extra_argument
 )
 ```
 
@@ -208,7 +208,7 @@ separate lines.
 ```py3
 # in:
 
-def very_important_function(template: str, *variables, file: os.PathLike, debug: bool = False):
+def very_important_function(template: str, *variables, file: os.PathLike, engine: str, header: bool = True, debug: bool = False):
     """Applies `variables` to the `template` and writes to `file`."""
     with open(file, 'w') as f:
         ...
@@ -219,6 +219,8 @@ def very_important_function(
     template: str,
     *variables,
     file: os.PathLike,
+    engine: str, 
+    header: bool = True
     debug: bool = False,
 ):
     """Applies `variables` to the `template` and writes to `file`."""