From 81c3a647f9d14cbabfbe7adc643a40f235d36253 Mon Sep 17 00:00:00 2001 From: simon Date: Sun, 26 Jan 2020 17:09:52 -0500 Subject: [PATCH] fix --- util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.py b/util.py index a32c28f..b0f87c1 100644 --- a/util.py +++ b/util.py @@ -1,4 +1,4 @@ def is_valid_id(s: str): - return all(c.isalnum() or c in "_-" for c in s) + return all(c.isalnum() or c in "_-" for c in s) and 16 >= len(s) >= 3