File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def readme():
10
10
11
11
setup (
12
12
name = "soundcloud-v2" ,
13
- version = "1.5.2 " ,
13
+ version = "1.5.3 " ,
14
14
description = (
15
15
"Python wrapper for the internal v2 SoundCloud API."
16
16
"Does not require an API key."
Original file line number Diff line number Diff line change 64
64
from soundcloud .soundcloud import *
65
65
from soundcloud .soundcloud import __all__ as sc_all
66
66
67
- __version__ = "1.5.2 "
67
+ __version__ = "1.5.3 "
68
68
69
69
__all__ = sc_all + ex_all + res_all
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ class BaseTrack(BaseItem):
63
63
waveform_url : str
64
64
media : Media
65
65
station_urn : Optional [str ]
66
- station_permalink : str
66
+ station_permalink : Optional [ str ]
67
67
track_authorization : str
68
68
monetization_model : str
69
69
policy : str
@@ -116,7 +116,7 @@ class CommentTrack(BaseData):
116
116
display_date : datetime .datetime
117
117
media : Media
118
118
station_urn : Optional [str ]
119
- station_permalink : str
119
+ station_permalink : Optional [ str ]
120
120
track_authorization : str
121
121
monetization_model : str
122
122
policy : str
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class BasicUser(BaseData):
47
47
country_code : Optional [str ]
48
48
badges : Badges
49
49
station_urn : Optional [str ]
50
- station_permalink : str
50
+ station_permalink : Optional [ str ]
51
51
52
52
53
53
@dataclass
You can’t perform that action at this time.
0 commit comments