mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-01 23:55:58 -05:00
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:
@@ -1,7 +1,7 @@
|
||||
import boto3
|
||||
import botocore
|
||||
from flask import current_app
|
||||
from monotonic import monotonic
|
||||
from time import monotonic
|
||||
from notifications_utils.recipients import InvalidEmailError
|
||||
|
||||
from app.clients import STATISTICS_DELIVERED, STATISTICS_FAILURE
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import json
|
||||
from monotonic import monotonic
|
||||
from time import monotonic
|
||||
from requests import (request, RequestException)
|
||||
from app.clients.sms import (SmsClient, SmsClientResponseException)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user