Skip to content

Commit 0bd7a20

Browse files
committed
Ignored pandas warning as I have restricted the version in requirements.txt
1 parent 7474c99 commit 0bd7a20

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

NSE_Option_Chain_Analyzer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
import platform
66
import sys
77
import time
8+
import warnings
89
import webbrowser
910
from tkinter import Tk, Toplevel, Event, TclError, StringVar, Frame, Menu, Label, Entry, SOLID, RIDGE, \
1011
DISABLED, NORMAL, N, S, E, W, LEFT, messagebox, PhotoImage
1112
from tkinter.ttk import Combobox, Button
1213
from typing import Union, Optional, List, Dict, Tuple, TextIO, Any
1314

15+
warnings.simplefilter(action='ignore', category=FutureWarning)
1416
import pandas
1517
import requests
1618
import streamtologger

0 commit comments

Comments
 (0)