Skip to content

Commit

Permalink
do not print
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidcarbon committed Dec 3, 2024
1 parent 5843a11 commit b3ba223
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions affinity.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__doc__ = """
Module for creating well-documented datasets, with types and annotations.
Version 0.7.0
Version 0.8.1
"""

from dataclasses import dataclass, field
Expand All @@ -17,7 +17,7 @@ def try_import(module: str) -> object | None:
try:
return import_module(module)
except ImportError:
print(f"{module} not found in the current environment")
# print(f"{module} not found in the current environment")
return


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "affinity"
version = "0.8.0"
version = "0.8.1"
description = "Module for creating well-documented datasets, with types and annotations."
authors = [
{ name = "Alex Kislukhin" }
Expand Down

0 comments on commit b3ba223

Please sign in to comment.