Skip to content

Commit

Permalink
Fix timedelta (#106)
Browse files Browse the repository at this point in the history
* fix-tqdm timedelta bug

* bump patch version
  • Loading branch information
The-Ludwig authored Jan 14, 2025
1 parent bf18268 commit 0c5c014
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion panama/read.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def read_DAT(

version = None

with tqdm(total=n_events) as pbar:
with tqdm(total=int(n_events)) as pbar:
for file in files:
with CorsikaParticleFile(file, parse_blocks=not noparse) as f:
run_headers.append([f.run_header[key] for key in run_header_features])
Expand Down
2 changes: 1 addition & 1 deletion panama/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__distribution__ = pkgs["panama"][0] if "panama" in pkgs else "corsika-panama"

# __version__ = version(__distribution__)
__version__ = "1.0.2"
__version__ = "1.0.3"

LOGO_TEMPLATE = r"""
,-.----. ,--.das nd ____ ulticore utils for corsik 7
Expand Down

0 comments on commit 0c5c014

Please sign in to comment.