refactor(utils/common): update type for inner
This commit is contained in:
@@ -3,7 +3,7 @@ from collections import OrderedDict
|
||||
from ..constants import SECRETS
|
||||
|
||||
|
||||
def surround(inner: str, outer="```") -> str:
|
||||
def surround(inner: str | int, outer="```") -> str:
|
||||
return outer + str(inner) + outer
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user