-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from martindurant/refactor
Refactor
- Loading branch information
Showing
24 changed files
with
696 additions
and
1,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# emacs | ||
.dir-locals.el | ||
|
||
# setuptools_scm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.