refactor(utils/common): update type for inner

This commit is contained in:
2026-05-11 18:33:30 -04:00
parent 0244fbb93c
commit 417b349082
+1 -1
View File
@@ -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