Imports cleanup

This commit is contained in:
Dylan 2022-10-06 02:07:00 +01:00
parent a3407467c2
commit 409b89d9df
3 changed files with 0 additions and 8 deletions

View File

@ -1,6 +1,3 @@
from asyncore import poll
failedToScan="Failed to scan your link! This may be due to an incorrect link, private/suspended account, deleted tweet, or Twitter itself might be having issues (Check here: https://api.twitterstat.us/)"
failedToScanExtra = "\n\nTwitter gave me this error: "
tweetNotFound="Tweet not found."

View File

@ -1,5 +1,4 @@
import os
from wsgiref import headers
os.environ["RUNNING_TESTS"]="1"
import twitfix,twExtract

View File

@ -1,10 +1,7 @@
from email import utils
from random import Random, random
from weakref import finalize
from flask import Flask, render_template, request, redirect, abort, Response, send_from_directory, url_for, send_file, make_response, jsonify
from flask_cors import CORS
import textwrap
import requests
import re
import os
import urllib.parse
@ -16,7 +13,6 @@ import msgs
import twExtract as twExtract
from configHandler import config
from cache import addVnfToLinkCache,getVnfFromLinkCache
import random
from yt_dlp.utils import ExtractorError
app = Flask(__name__)
CORS(app)