Finish formatting (last commit hopefully)

pull/388/head
Wyatt Stanke 11 months ago
parent 0d9862c75c
commit 81c091fac3
No known key found for this signature in database
GPG Key ID: CE6BA5FFF135536D

@ -26,12 +26,19 @@ runs:
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
path: ~/.cache/pypoetry path: ~/.cache/pypoetry
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }} key: poetry-cache
-${{ runner.os }}
-${{ steps.setup_python.outputs.python-version }}
-${{ env.POETRY_VERSION }}
- name: Cache Packages - name: Cache Packages
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
path: ~/.local path: ~/.local
key: poetry-local-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }} key: poetry-local
-${{ runner.os }}
-${{ steps.setup_python.outputs.python-version }}
-${{ hashFiles('**/poetry.lock')}}
-${{ hashFiles('.github/workflows/*.yml') }}
- name: Install dependencies - name: Install dependencies
run: POETRY_VIRTUALENVS_CREATE=false poetry install run: POETRY_VIRTUALENVS_CREATE=false poetry install
shell: bash shell: bash

@ -14,7 +14,7 @@ def dataframe_to_text(
Returns: Returns:
str: The string representation of the DataFrame. str: The string representation of the DataFrame.
Example: Example:
>>> df = pd.DataFrame({ >>> df = pd.DataFrame({
... 'A': [1, 2, 3], ... 'A': [1, 2, 3],

Loading…
Cancel
Save