From b4d73e6767ae4cd8ac8b6c8a1a0c0f0b9bd8bb7e Mon Sep 17 00:00:00 2001 From: Yahya Al-Shamali <42281247+PointlessUsername@users.noreply.github.com> Date: Sun, 2 Jul 2023 03:38:28 -0600 Subject: [PATCH] fixed indentation --- mecsimcalc/spreadsheet_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mecsimcalc/spreadsheet_utils.py b/mecsimcalc/spreadsheet_utils.py index 752afc1..d83fb5b 100644 --- a/mecsimcalc/spreadsheet_utils.py +++ b/mecsimcalc/spreadsheet_utils.py @@ -31,9 +31,9 @@ def file_to_dataframe(file: io.BytesIO) -> pd.DataFrame: >>> file = msc.input_to_file(input_file) >>> df = msc.file_to_dataframe(file) >>> print(df) - A B C - 0 1 2 3 - 1 4 5 6 + A B C + 0 1 2 3 + 1 4 5 6 """ # try to read the file as a CSV, if that fails try to read it as an Excel file