Remove print statements

This commit is contained in:
2025-06-29 22:45:11 -04:00
parent bb325684ac
commit e2f0bf5903
3 changed files with 2 additions and 4 deletions

View File

@ -645,8 +645,6 @@ class CommandArgumentParser:
if arg in self._keyword: if arg in self._keyword:
next_flagged_index = index next_flagged_index = index
break break
print(f"next_flagged_index: {next_flagged_index}")
print(f"{self._keyword_list=}")
if next_flagged_index == -1: if next_flagged_index == -1:
next_flagged_index = len(args) next_flagged_index = len(args)
args_consumed = await self._consume_all_positional_args( args_consumed = await self._consume_all_positional_args(

View File

@ -1 +1 @@
__version__ = "0.1.54" __version__ = "0.1.55"

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "falyx" name = "falyx"
version = "0.1.54" version = "0.1.55"
description = "Reliable and introspectable async CLI action framework." description = "Reliable and introspectable async CLI action framework."
authors = ["Roland Thomas Jr <roland@rtj.dev>"] authors = ["Roland Thomas Jr <roland@rtj.dev>"]
license = "MIT" license = "MIT"