From 350cf85cd2ee7ca891eb9256c74cbe43c8efdae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 13 Feb 2018 14:36:16 +0100 Subject: [PATCH] Removed unused imports --- pillar/api/blender_id.py | 1 - pillar/web/nodes/custom/comments.py | 1 - pillar/web/projects/routes.py | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/pillar/api/blender_id.py b/pillar/api/blender_id.py index 9df1387a..bf95dae5 100644 --- a/pillar/api/blender_id.py +++ b/pillar/api/blender_id.py @@ -14,7 +14,6 @@ from flask import Blueprint, request, jsonify, session from requests.adapters import HTTPAdapter from pillar import current_app -from pillar.api import service from pillar.api.utils import authentication, utcnow from pillar.api.utils.authentication import find_user_in_db, upsert_user diff --git a/pillar/web/nodes/custom/comments.py b/pillar/web/nodes/custom/comments.py index 901b5ebc..c39f90b8 100644 --- a/pillar/web/nodes/custom/comments.py +++ b/pillar/web/nodes/custom/comments.py @@ -1,5 +1,4 @@ import logging -import warnings from flask import current_app from flask import request diff --git a/pillar/web/projects/routes.py b/pillar/web/projects/routes.py index c7032bf8..787bb685 100644 --- a/pillar/web/projects/routes.py +++ b/pillar/web/projects/routes.py @@ -8,7 +8,7 @@ from pillarsdk import Node from pillarsdk import Project from pillarsdk.exceptions import ResourceNotFound from pillarsdk.exceptions import ForbiddenAccess -import flask + from flask import Blueprint from flask import render_template from flask import request