Skip to content

Commit

Permalink
Use Flask==2.2.4 for before_first_request
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Apr 26, 2023
1 parent c9cf163 commit fba8f75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ rel

httpx

Flask
Flask==2.2.4
flask_caching
flask-sock
Flask-SocketIO
Expand Down
7 changes: 3 additions & 4 deletions rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@
import re
import threading

from flask import Flask, jsonify, request, send_from_directory
from flask_cors import CORS, cross_origin
from flask_sock import Sock

import CONFIG as CONFIG
from COINGECKO import Coingecko
from CONFIG import KV_STORE
from CONNECT_WEBSOCKET import TendermintRPCWebSocket
from flask import Flask, jsonify, request, send_from_directory
from flask_cors import CORS, cross_origin
from flask_sock import Sock
from HELPERS import (
Mode,
hide_rpc_data,
Expand Down

0 comments on commit fba8f75

Please sign in to comment.