From 118b612059394ea161a05adee74507ed22425cd4 Mon Sep 17 00:00:00 2001 From: sponsfreixes Date: Fri, 15 Feb 2019 22:18:58 -0800 Subject: [PATCH] Improve examples to use 88 chars line length (#677) (#714) The examples were wrapping at less than 88 characters, which is not the default for black. --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7f9b1d0..2ce91bb 100644 --- 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`.""" -- 2.39.2