From 76b34a039e2d84cd16646edd3af92d33b058e294 Mon Sep 17 00:00:00 2001 From: andrei Date: Wed, 17 Jan 2018 10:02:04 -0800 Subject: [PATCH] Remove util.token module entirely --- disco/cli.py | 5 ----- disco/util/token.py | 10 ---------- 2 files changed, 15 deletions(-) delete mode 100644 disco/util/token.py diff --git a/disco/cli.py b/disco/cli.py index 201b068..edddbed 100644 --- a/disco/cli.py +++ b/disco/cli.py @@ -42,7 +42,6 @@ def disco_main(run=False): from disco.client import Client, ClientConfig from disco.bot import Bot, BotConfig - from disco.util.token import is_valid_token from disco.util.logging import setup_logging if os.path.exists(args.config): @@ -60,10 +59,6 @@ def disco_main(run=False): if hasattr(config, k) and v is not None: setattr(config, k, v) - if not is_valid_token(config.token): - print('Invalid token passed') - return - if args.shard_auto: from disco.gateway.sharder import AutoSharder AutoSharder(config).run() diff --git a/disco/util/token.py b/disco/util/token.py deleted file mode 100644 index d71b93d..0000000 --- a/disco/util/token.py +++ /dev/null @@ -1,10 +0,0 @@ -import re - -TOKEN_RE = re.compile(r'M\w{23}\.[\w-]{6}\..{27}') - - -def is_valid_token(token): - """ - Validates a Discord authentication token, returning true if valid. - """ - return bool(TOKEN_RE.match(token))