aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-04-06 23:11:36 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-04-06 23:11:36 +0200
commita0df85f36d063a692b64713294d1f0fff453f9b3 (patch)
tree9703b9da248a1f50e6b0d2bf610672eced0ad21d
parentMigrate form Flask-Script to the built-in integration of the click command li... (diff)
downloadnewspipe-a0df85f36d063a692b64713294d1f0fff453f9b3.tar.gz
newspipe-a0df85f36d063a692b64713294d1f0fff453f9b3.tar.bz2
newspipe-a0df85f36d063a692b64713294d1f0fff453f9b3.zip
Removed useless import.
-rwxr-xr-xnewspipe/commands.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/newspipe/commands.py b/newspipe/commands.py
index 62a355e4..3d7becdd 100755
--- a/newspipe/commands.py
+++ b/newspipe/commands.py
@@ -6,7 +6,6 @@ import os
from datetime import datetime
import click
-from flask import Flask
from werkzeug.security import generate_password_hash
import newspipe.models
bgstack15