Skip to content

Commit

Permalink
Edited ci to install mypy dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wleong1 committed Mar 7, 2024
1 parent d88e61b commit 6b190f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
python-version: 3.x
- name: Install Dependencies
run: |
pip install mypy
pip install mypy types-request pandas-stubs
- name: mypy
run: |
mypy src/
Expand Down
2 changes: 1 addition & 1 deletion src/live_price_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import Union, Any
import requests
import yfinance as yf # type: ignore[import-untyped] # pylint: disable=E0401
import yfinance as yf # type: ignore[import-not-found] # type: ignore[import-untyped] # pylint: disable=E0401
import pandas as pd

from src.parameters import ALPHA_VANTAGE_API_KEY # type: ignore[import-not-found] # pylint: disable=E0401, E0611
Expand Down

0 comments on commit 6b190f5

Please sign in to comment.