Skip to content

Commit 101f3a3

Browse files
authored
Removed .upper() (#129)
1 parent 3e617df commit 101f3a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythainav/api.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get(fund_name, *, source="finnomena", date=None, **kargs) -> Nav:
2828
Nav(value=4.2696, updated='20/01/2020', tags={'latest'}, fund='KT-PRECIOUS')
2929
```
3030
"""
31-
fund_name = fund_name.upper()
31+
fund_name = fund_name
3232

3333
source2class = {
3434
"finnomena": sources.Finnomena,
@@ -84,7 +84,7 @@ def get_all(
8484
[2265 rows x 4 columns]
8585
```
8686
"""
87-
fund_name = fund_name.upper()
87+
fund_name = fund_name
8888

8989
source2class = {
9090
"finnomena": sources.Finnomena,

0 commit comments

Comments
 (0)