Skip to content

Commit

Permalink
fix(ncdump): don't print info in section heading (#270)
Browse files Browse the repository at this point in the history
fix(ncdump): don't print info in section heading

Bumps project from 0.3.0 to 0.3.1.
  • Loading branch information
engeir authored Nov 4, 2022
1 parent 352edd7 commit 2a8f012
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ncdump-rich"
version = "0.3.0"
version = "0.3.1"
description = "Rich NcDump"
authors = ["Eirik Enger <eirroleng@gmail.com>"]
license = "GPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion src/ncdump_rich/ncdump.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def print_ncattr(key: str) -> None:
cprint(s1 + s2)

# Print file properties
cprint(f"[bold white]NetCDF Properties:[/bold white] {nc_file.file_format}")
cprint("[bold white]NetCDF Properties:[/bold white]")
for key, prop in {
"File format": "file_format",
"Disk format": "disk_format",
Expand Down

0 comments on commit 2a8f012

Please sign in to comment.