From 97afb9eef3ca846bae5f67826e15d6aaebcbd35c Mon Sep 17 00:00:00 2001 From: jmcouffin Date: Sun, 22 Oct 2023 22:24:18 +0200 Subject: [PATCH] small typo in code samples fix --- pyrevitlib/pyrevit/interop/xl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyrevitlib/pyrevit/interop/xl.py b/pyrevitlib/pyrevit/interop/xl.py index 68a91ff90..fdf73a971 100644 --- a/pyrevitlib/pyrevit/interop/xl.py +++ b/pyrevitlib/pyrevit/interop/xl.py @@ -1,5 +1,5 @@ -0"""Read and Write Excel Files.""" -#pylint: disable=import-error +"""Read and Write Excel Files.""" +# pylint: disable=import-error import xlrd import xlsxwriter @@ -29,7 +29,7 @@ def load(xlfile, sheets=[], columns=[], datatype=None, headers=True): It builds a dictionary for each row with the column name and value. If none given (default), it returns a simple list of values. datatype (type, optional): Type of the data. Defaults to None. - headers (bool, optional): Whether to use the first row as headers. + headers (bool, optional): Whether to use the first row as headers. Defaults to True. Returns: