Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jun 17, 2024
1 parent 85e8ba7 commit 3b1ec08
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/tracing_ext-demo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tracing extension demo."""

import time

import pandas as pd
Expand Down
1 change: 1 addition & 0 deletions pandas_flavor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Top-level API for pandas-flavor."""

from .register import (
register_dataframe_accessor,
register_dataframe_method,
Expand Down
1 change: 1 addition & 0 deletions pandas_flavor/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""Version number."""

__version__ = "0.6.0"
1 change: 1 addition & 0 deletions pandas_flavor/register.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Register functions as methods of Pandas DataFrame and Series."""

from functools import wraps
from pandas.api.extensions import (
register_series_accessor,
Expand Down
1 change: 1 addition & 0 deletions pandas_flavor/xarray.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""XArray support for pandas_flavor."""

from xarray import register_dataarray_accessor, register_dataset_accessor
from functools import wraps

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Setup script."""

import io
import os
import sys
Expand Down
1 change: 1 addition & 0 deletions tests/test_pandas_register.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for pandas series and dataframe method registration."""

import pandas_flavor as pf
import pandas as pd

Expand Down

0 comments on commit 3b1ec08

Please sign in to comment.