Skip to content

Commit c1089d1

Browse files
committed
Removed beta indicator
1 parent 318c5a8 commit c1089d1

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

NSE_Option_Chain_Analyzer.py

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
# noinspection PyAttributeOutsideInit
2828
class Nse:
2929
version: str = '5.4'
30-
beta: Tuple[bool, int] = (False, 0)
3130

3231
def __init__(self, window: Tk) -> None:
3332
self.intervals: List[int] = [1, 2, 3, 5, 10, 15]
@@ -769,17 +768,9 @@ def log(self, event: Optional[Event] = None) -> None:
769768
try:
770769
# noinspection PyProtectedMember,PyUnresolvedReferences
771770
base_path: str = sys._MEIPASS
772-
print(platform.system() + ' ' + platform.release() + ' .exe version ' + Nse.version, end=' ')
773-
if Nse.beta[0]:
774-
print(f"beta {Nse.beta[1]}")
775-
else:
776-
print()
771+
print(platform.system() + ' ' + platform.release() + ' .exe version ' + Nse.version)
777772
except AttributeError:
778-
print(platform.system() + ' ' + platform.release() + ' .py version ' + Nse.version, end=' ')
779-
if Nse.beta[0]:
780-
print(f"beta {Nse.beta[1]}")
781-
else:
782-
print()
773+
print(platform.system() + ' ' + platform.release() + ' .py version ' + Nse.version)
783774
if not self.load_nse_icon:
784775
print("NSE icon loading disabled")
785776

0 commit comments

Comments
 (0)