diff --git a/pyproject.toml b/pyproject.toml index 5a91246..4f79d22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,12 @@ dependencies = [ Homepage = "https://github.com/RCoff/Smartsheet-DataFrame" Issues = "https://github.com/RCoff/Smartsheet-DataFrame/issues" +[tool.isort] +force_grid_wrap = 3 +include_trailing_comma = true +multi_line_output = 3 +use_parentheses = true + [tool.ruff] exclude = ["tests"] diff --git a/src/smartsheet_dataframe/__init__.py b/src/smartsheet_dataframe/__init__.py index f6073f6..de7ed7c 100644 --- a/src/smartsheet_dataframe/__init__.py +++ b/src/smartsheet_dataframe/__init__.py @@ -5,7 +5,7 @@ ) __all__ = [ - 'get_as_df', - 'get_report_as_df', - 'get_sheet_as_df', + "get_as_df", + "get_report_as_df", + "get_sheet_as_df", ] diff --git a/src/smartsheet_dataframe/smartsheet_dataframe.py b/src/smartsheet_dataframe/smartsheet_dataframe.py index bcbc6d9..78a3115 100644 --- a/src/smartsheet_dataframe/smartsheet_dataframe.py +++ b/src/smartsheet_dataframe/smartsheet_dataframe.py @@ -8,14 +8,14 @@ """ # Standard Imports -from typing import Any -import requests import logging -import warnings import time +import warnings +from typing import Any # 3rd-Party Imports import pandas as pd +import requests # Local Imports from .exceptions import AuthenticationError