Skip to content

Commit

Permalink
2.9.009
Browse files Browse the repository at this point in the history
  • Loading branch information
chapmanjacobd committed Aug 3, 2024
1 parent 5a06b53 commit 9448239
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ To stop playing press Ctrl+C in either the terminal or mpv
<details><summary>List all subcommands</summary>

$ library
library (v2.9.007; 81 subcommands)
library (v2.9.009; 81 subcommands)

Create database subcommands:
╭─────────────────┬──────────────────────────────────────────╮
Expand Down Expand Up @@ -2793,7 +2793,7 @@ BTW, for some cols like time_deleted you'll need to specify a where clause so th

$ library dedupe-czkawka -h
usage: library dedupe-czkawka [--volume VOLUME] [--auto-seek] [--ignore-errors] [--folder] [--folder-glob [FOLDER_GLOB]] [--replace] [--no-replace] [--override-trash OVERRIDE_TRASH] [--delete-files] [--gui]
[--auto-select-min-ratio AUTO_SELECT_MIN_RATIO] [--all-keep] [--all-left] [--all-right] [--all-delete] [--verbose]
[--auto-select-min-ratio AUTO_SELECT_MIN_RATIO] [--all-keep] [--all-left] [--all-right] [--all-delete]
czkawka_dupes_output_path

Choose which duplicate to keep by opening both side-by-side in mpv
Expand Down
2 changes: 1 addition & 1 deletion xklb/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.9.007"
__version__ = "2.9.009"
2 changes: 1 addition & 1 deletion xklb/tablefiles/eda.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def print_info(args, df):

print("### Summary statistics")
summary_stats = df.describe()
summary_stats = pd.concat([summary_stats, df.select_dtypes("number").agg(['sum', 'skew', 'kurt'])])
summary_stats = pd.concat([summary_stats, df.select_dtypes("number").agg(["sum", "skew", "kurt"])])
print_df(summary_stats)

converted = df.convert_dtypes()
Expand Down
1 change: 1 addition & 0 deletions xklb/utils/arggroups.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ def database(parent_parser):
capability_soft_delete(parent_parser)
capability_delete(parent_parser)


def paths_or_stdin(parent_parser, destination=False):
parser = parent_parser.add_argument_group("Paths")
parser.add_argument(
Expand Down

0 comments on commit 9448239

Please sign in to comment.