Run auto-correct on app/ and tests/

This commit is contained in:
Ben Thorner
2021-03-10 13:55:06 +00:00
parent 321b4913ed
commit a91fde2fda
248 changed files with 2026 additions and 1716 deletions

View File

@@ -1,7 +1,11 @@
from flask import json, url_for
from tests import create_authorization_header
from tests.app.db import create_inbound_sms, create_service_inbound_api, create_service_callback_api
from tests.app.db import (
create_inbound_sms,
create_service_callback_api,
create_service_inbound_api,
)
def test_get_inbound_sms_returns_200(

View File

@@ -2,13 +2,12 @@ import pytest
from flask import json, url_for
from jsonschema.exceptions import ValidationError
from app.schema_validation import validate
from app.v2.inbound_sms.inbound_sms_schemas import (
get_inbound_sms_request,
get_inbound_sms_response,
get_inbound_sms_single_response
get_inbound_sms_single_response,
)
from app.schema_validation import validate
from tests import create_authorization_header
from tests.app.db import create_inbound_sms