diff --git a/app/v2/template/post_template.py b/app/v2/template/post_template.py index c4ecbc6fe..ae9b16002 100644 --- a/app/v2/template/post_template.py +++ b/app/v2/template/post_template.py @@ -1,8 +1,5 @@ -import uuid - from flask import jsonify, request from jsonschema.exceptions import ValidationError -from werkzeug.exceptions import abort from app import api_user from app.dao import templates_dao diff --git a/tests/app/v2/template/test_post_template.py b/tests/app/v2/template/test_post_template.py index 4501852c2..158d9b258 100644 --- a/tests/app/v2/template/test_post_template.py +++ b/tests/app/v2/template/test_post_template.py @@ -1,5 +1,4 @@ import pytest -import uuid from flask import json