Skip to content

Commit

Permalink
Merge pull request #3 from CPBridge/bug/type_hinting
Browse files Browse the repository at this point in the history
Remove typehint for older pythons
  • Loading branch information
CPBridge authored Aug 31, 2024
2 parents 1f07dd8 + 185d3d9 commit 00d34c2
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 = "pycrumbs"
version = "0.3.0"
version = "0.3.1"
description = "Tool for automatically storing information about Python processes."
authors = ["Chris Bridge <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/pycrumbs/track.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def tracked(
record_filename: Optional[str] = None,
extra_modules: Optional[Sequence[Union[str, ModuleType]]] = None,
extra_environment_variables: Optional[Sequence[str]] = None,
seed_parameter: str | None = None,
seed_parameter: Optional[str] = None,
seed_numpy: bool = True,
seed_tensorflow: bool = True,
seed_torch: bool = True,
Expand Down

0 comments on commit 00d34c2

Please sign in to comment.