From 9eccd189a3ddfec264511facb874863605020ce7 Mon Sep 17 00:00:00 2001 From: Filips Nastins <47500046+filipsnastins@users.noreply.github.com> Date: Mon, 2 Feb 2026 14:38:24 +0100 Subject: [PATCH] docs: document 'pretty' option in docstring --- curlify.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/curlify.py b/curlify.py index 7a5fc5f..0a93c3a 100644 --- a/curlify.py +++ b/curlify.py @@ -13,6 +13,8 @@ def to_curl(request, compressed=False, verify=True, pretty=False): verify : bool If `False` then a `--insecure` argument will be added to the result, disabling TLS certificate verification + pretty : bool + If `True`, format the curl command across multiple lines for readability. """ command = []