Skip to content

Commit

Permalink
fixed bug with exluding columns from children_dfs
Browse files Browse the repository at this point in the history
  • Loading branch information
0Hughman0 committed Mar 21, 2021
1 parent f8f565d commit d22708a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cassini/core.py
Expand Up @@ -549,7 +549,7 @@ def children_df(self, * , include: Sequence[str] = None, exclude: Sequence[str]
df = df[include]

if exclude:
df = df.drop(exclude)
df = df.drop(exclude, axis=1)

return df

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cassini"
version = "0.1.2"
version = "0.1.3"
description = "A tool to structure experimental work, data and analysis using Jupyter Lab."
authors = ["0Hughman0 <rammers2@hotmail.co.uk>"]
license = "GPL-3.0-only"
Expand Down

0 comments on commit d22708a

Please sign in to comment.