Add dot to name check

This commit is contained in:
lash 2022-03-31 16:00:27 +00:00
parent 4dcd6dee39
commit 74fcf3c959
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ from shep.error import (
)
re_name = r'^[a-zA-Z_]+$'
re_name = r'^[a-zA-Z_\.]+$'
class State:
"""State is an in-memory bitmasked state store for key-value pairs, or even just keys alone.