Skip to content

Commit bb8a951

Browse files
committed
Remove print. Bump up version
Signed-off-by: Prabhu Subramanian <[email protected]>
1 parent 1066ddb commit bb8a951

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

atom_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""
22
A cli, classes and functions for converting an atom slice to a different format
33
"""
4-
__version__ = '0.7.9'
4+
__version__ = '0.8.0'

atom_tools/lib/ruby_semantics.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,4 @@ def code_to_routes(code: str) -> List[HttpRoute]:
280280
i == len(code_parts) - 2 or (len(code_parts) > i + 2 and code_parts[i + 1] != "do")):
281281
routes += _get_dangling_routes(i, m, code, code_parts, f"{url_prefix}/" if has_scope else "/")
282282

283-
if routes:
284-
print (code, routes)
285283
return routes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "atom-tools"
3-
version = "0.7.9"
3+
version = "0.8.0"
44
description = "Collection of tools for use with AppThreat/atom."
55
authors = [
66
{ name = "Caroline Russell", email = "[email protected]" },

0 commit comments

Comments
 (0)