Skip to content

Commit 2f0fd5a

Browse files
committed
Fix logger not defined in scrapers.fundamentals
1 parent 8fe1f4b commit 2f0fd5a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

yfinance/scrapers/fundamentals.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import datetime
2+
import logging
23
import json
34

45
import pandas as pd
@@ -8,6 +9,7 @@
89
from yfinance.data import TickerData
910
from yfinance.exceptions import YFinanceDataException, YFinanceException
1011

12+
logger = logging.getLogger(__name__)
1113

1214
class Fundamentals:
1315

0 commit comments

Comments
 (0)