Skip to content

Commit

Permalink
Merge pull request #52 from martindurant/refactor
Browse files Browse the repository at this point in the history
Refactor
  • Loading branch information
martindurant authored Apr 29, 2024
2 parents 5dd12c5 + 17f05ca commit f9641b5
Show file tree
Hide file tree
Showing 24 changed files with 696 additions and 1,090 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# emacs
.dir-locals.el

# setuptools_scm
Expand Down
13 changes: 3 additions & 10 deletions src/awkward_pandas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
from __future__ import annotations

import awkward_pandas.accessor
import awkward_pandas.dask_connect # noqa
from awkward_pandas.array import AwkwardExtensionArray
from awkward_pandas.dtype import AwkwardDtype
from awkward_pandas.io import from_awkward, read_json, read_parquet
from awkward_pandas.lib import merge
import awkward_pandas.dask
import awkward_pandas.pandas # noqa
from awkward_pandas.io import read_json, read_parquet
from awkward_pandas.version import version as __version__ # noqa

__all__ = (
"AwkwardDtype",
"AwkwardExtensionArray",
"from_awkward",
"merge",
"read_parquet",
"read_json",
)
191 changes: 0 additions & 191 deletions src/awkward_pandas/accessor.py

This file was deleted.

Loading

0 comments on commit f9641b5

Please sign in to comment.