Skip to content

Commit

Permalink
fix: mypy changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bodyangug committed Oct 4, 2023
1 parent 23454ec commit b74e3b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import urllib3 as urllib3
from dotenv import load_dotenv # type: ignore
from flask import Flask
from flask_cors import CORS
from flask_cors import CORS # type: ignore
from v3.libraries_api import libraries_api
from werkzeug import run_simple

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from dotenv import load_dotenv # type: ignore
from elasticsearch import Elasticsearch as NativeElastic # type: ignore
from flask import Blueprint, request
from flask_cors import cross_origin
from flask_cors import cross_origin # type: ignore
from indigo import Indigo, IndigoObject # type: ignore

libraries_api = Blueprint("libraries_api", __name__)
Expand Down

0 comments on commit b74e3b1

Please sign in to comment.