remove unused Poolname validation (#2094)

This commit is contained in:
Cheick Keita
2022-06-30 16:23:53 -07:00
committed by GitHub
parent 870a51a1e4
commit 8d8a8b01d2

View File

@ -28,6 +28,5 @@ class Container(str):
class PoolName(str): class PoolName(str):
def __new__(cls, value: str) -> "PoolName": def __new__(cls, value: str) -> "PoolName":
check_alnum_dash(value)
obj = super().__new__(cls, value) obj = super().__new__(cls, value)
return obj return obj