Remove monotonic

> On Python 3.3 or newer, monotonic will be an alias of time.monotonic
> from the standard library. On older versions, it will fall back to an
> equivalent implementation.

– https://pypi.org/project/monotonic/
This commit is contained in:
Chris Hill-Scott
2018-05-04 10:55:58 +01:00
parent 47dcef35eb
commit cefa253578
5 changed files with 4 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import json
import logging
from monotonic import monotonic
from time import monotonic
from requests import request, RequestException
from app.clients.sms import (SmsClient, SmsClientResponseException)