From b0854c096999555906a55fe7feb4deaf2d4c8f62 Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 14 Apr 2017 14:34:21 -0700 Subject: [PATCH] Remote duration argument-parser field Libs should just implement this manually. --- disco/bot/parser.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/disco/bot/parser.py b/disco/bot/parser.py index 722abe6..e9cabfc 100644 --- a/disco/bot/parser.py +++ b/disco/bot/parser.py @@ -15,12 +15,6 @@ TYPE_MAP = { 'snowflake': lambda ctx, data: int(data), } -try: - import dateparser - TYPE_MAP['duration'] = lambda ctx, data: dateparser.parse(data, settings={'TIMEZONE': 'UTC'}) -except ImportError: - pass - def to_bool(ctx, data): if data in BOOL_OPTS: