From da77112725d2a986dc17454772c38319a8cd2d08 Mon Sep 17 00:00:00 2001 From: Julien Langlois Date: Fri, 12 Dec 2025 08:47:51 -0800 Subject: [PATCH] Fixup docs warning docstring of shotgun_api3.shotgun.Shotgun.export_page:15: Block quote ends without a blank line; unexpected unindent. --- shotgun_api3/shotgun.py | 1 + 1 file changed, 1 insertion(+) diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index 2d06823c8..9b6a91a9d 100644 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -1898,6 +1898,7 @@ def export_page(self, page_id, format, layout_name=None): "ID,Name,Status\\n1,Shot 001,ip\\n2, Shot 002,rev\\n" >>> sg.export_page(12345, "csv") "ID,Name,Status\\n1,Shot 001,ip\\n2,Shot 002,rev\\n" + :param int page_id: The ID of the page to export. :param str format: The format to export the page to. Supported format is ``"csv"``. :param str layout_name: Optional layout name. This should be the name of the layout seen in the Flow Production Tracking UI.