From: sponsfreixes Date: Sat, 16 Feb 2019 06:18:58 +0000 (-0800) Subject: Improve examples to use 88 chars line length (#677) (#714) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/118b612059394ea161a05adee74507ed22425cd4?ds=inline 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. --- 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`."""