0.5.0-alpha: support autocomplete, aliases for command, fix many bugs and other

This commit is contained in:
2025-04-10 13:12:36 +03:00
parent d1d644d422
commit e2dd7e4aea
7 changed files with 21 additions and 15 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ from argenta.router.exceptions import (RepeatedFlagNameException,
class Router:
def __init__(self,
title: str = 'Commands group title:',
title: str = None,
name: str = 'Default'):
self._title = title
self._name = name
@@ -125,7 +125,7 @@ class Router:
return self._name
def get_title(self) -> str:
def get_title(self) -> str | None:
return self._title