Browse Source

Remote duration argument-parser field

Libs should just implement this manually.
feature/storage
Andrei 8 years ago
parent
commit
b0854c0969
  1. 6
      disco/bot/parser.py

6
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:

Loading…
Cancel
Save