Skip to content

Commit

Permalink
Merge pull request #95 from PathwayCommons/fix-mypy-issue
Browse files Browse the repository at this point in the history
Fix mypy issue in CI
  • Loading branch information
JohnGiorgi authored Jun 19, 2021
2 parents 7229532 + 2dc1608 commit 3581399
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion semantic_search/demo.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
from typing import List

import requests
import requests # type: ignore
import streamlit as st
import validators

Expand Down
2 changes: 1 addition & 1 deletion semantic_search/ncbi.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import logging
import time

import requests
import requests # type: ignore
from Bio import Medline
from dotenv import load_dotenv
from pydantic import BaseSettings
Expand Down

0 comments on commit 3581399

Please sign in to comment.