Skip to content

Commit

Permalink
Forgot to remote a tracing statement
Browse files Browse the repository at this point in the history
  • Loading branch information
dluman committed Jul 27, 2024
1 parent 8ee62a6 commit 62f0715
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setuptools.setup(
name="arglite",
version="0.9.0",
version="0.9.1",
packages=['arglite'],
package_dir={'': 'src'},
include_package_data=True,
Expand Down
1 change: 0 additions & 1 deletion src/arglite/arglite.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ def pairs(self, args: str = "") -> list:
def typify(self, val: Any) -> Any:
""" Cast as a data structure or other type if possible, else...meh """
try:
print(f"trying type...{val}")
val = literal_eval(val)
except:
pass
Expand Down

0 comments on commit 62f0715

Please sign in to comment.