File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
30
30
- Update DataFrameClient to fix faulty empty tags (#770 thx @michelfripiat )
31
31
- Update DataFrameClient to properly return ` dropna ` values (#778 thx @jgspiro )
32
32
- Update DataFrameClient to test for pd.DataTimeIndex before blind conversion (#623 thx @testforvin )
33
+ - Update client to type-set UDP port to int (#651 thx @yifeikong )
33
34
34
35
### Removed
35
36
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ def __init__(self,
107
107
self ._verify_ssl = verify_ssl
108
108
109
109
self .__use_udp = use_udp
110
- self .__udp_port = udp_port
110
+ self .__udp_port = int ( udp_port )
111
111
112
112
if not session :
113
113
session = requests .Session ()
You can’t perform that action at this time.
0 commit comments