From: programmer04 Date: Wed, 20 Feb 2019 19:11:14 +0000 (+0100) Subject: Fix example with well formated code (add missing comma) (#720) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/2ae5ce1e6ee036b48db48342512f6d3726f77682?ds=sidebyside Fix example with well formated code (add missing comma) (#720) --- diff --git a/README.md b/README.md index 2ce91bb..b25f64f 100644 --- a/README.md +++ b/README.md @@ -219,8 +219,8 @@ def very_important_function( template: str, *variables, file: os.PathLike, - engine: str, - header: bool = True + engine: str, + header: bool = True, debug: bool = False, ): """Applies `variables` to the `template` and writes to `file`."""