Skip to content

Commit d5c7e82

Browse files
committed
made proper flake8 linting
1 parent 2063bbd commit d5c7e82

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

BSE_data/bombay.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
from unicodedata import category
21
from bsedata.bse import BSE
32

4-
b = BSE(update_codes = True)
3+
b = BSE(update_codes=True)
54
tg = b.topGainers()
65
print("\nTOP GAINERS - Now\n")
76
for i in tg:
@@ -17,8 +16,9 @@
1716
print(f"{j}: {i[j]}")
1817

1918
# indices catagory parameter
20-
category = ["market_cap/broad", "sector_and_industry", "thematics", "strategy",
21-
"sustainability", "volatility", "composite", "government", "corporate", "money_market"]
19+
category = ["market_cap/broad", "sector_and_industry", "thematics",
20+
"strategy", "sustainability", "volatility", "composite",
21+
"government", "corporate", "money_market"]
2222

2323
for i in category:
2424
indices = b.getIndices(category=i)
@@ -29,4 +29,4 @@
2929
b.updateScripCodes()
3030

3131
# print(b.verifyScripCode(code))
32-
# print(b.getScripCodes)
32+
# print(b.getScripCodes)

0 commit comments

Comments
 (0)