plutopluto

git clone https://git.ce9e.org/plutopluto.git

commit
bea05206a241c2f7ab695698eeaa1950ad564bf2
parent
826efdda4ce234295bb778a0d454b003133bdf86
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-07-01 17:45
chore: sort imports

Diffstat

M plutopluto/__init__.py 18 ++++++++++--------

1 files changed, 10 insertions, 8 deletions


diff --git a/plutopluto/__init__.py b/plutopluto/__init__.py

@@ -1,18 +1,20 @@
    1     1 #!/usr/bin/env python
    2     2 
    3    -1 __version__ = '1.2.0'
    4    -1 
    5    -1 import sys
    6    -1 import os
    7    -1 from time import mktime, time
    8     3 import argparse
    9    -1 
   10    -1 from flask import Flask, request, jsonify, abort
   11    -1 from werkzeug.contrib.cache import SimpleCache
   -1     4 import os
   -1     5 import sys
   -1     6 from time import mktime
   -1     7 from time import time
   12     8 
   13     9 import feedparser
   14    10 from bs4 import BeautifulSoup
   -1    11 from flask import Flask
   -1    12 from flask import request
   -1    13 from flask import jsonify
   -1    14 from flask import abort
   -1    15 from werkzeug.contrib.cache import SimpleCache
   15    16 
   -1    17 __version__ = '1.2.0'
   16    18 
   17    19 app = Flask(__name__)
   18    20 cache = SimpleCache()