Finish formatting (last commit hopefully)

pull/388/head
Wyatt Stanke 10 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
with:
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
uses: actions/cache@v4
with:
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
run: POETRY_VIRTUALENVS_CREATE=false poetry install
shell: bash

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

Loading…
Cancel
Save