Skip to content

Commit

Permalink
Removing debugging checks
Browse files Browse the repository at this point in the history
  • Loading branch information
WillJRoper committed May 27, 2024
1 parent 0017b4a commit c51abb9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/dir_wand/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ def parse_swapfile(swapfile):
start, end = swap_range.split("-")
swaps[key] = list(range(int(start), int(end) + 1))

print(swaps)

return swaps


Expand All @@ -78,7 +76,6 @@ def parse_swaps(**swaps):
If the number of swaps isn't equal between all placeholders.
"""
for key, value in swaps.items():
print(key, value)
# Do we have a list?
if isinstance(value, (list, tuple)):
swaps[key] = value
Expand Down

0 comments on commit c51abb9

Please sign in to comment.