File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 31
31
print (' scheduledDatetime : %s' % msg .scheduledDatetime )
32
32
print (' createdDatetime : %s' % msg .createdDatetime )
33
33
print (' recipients : %s\n ' % msg .recipients )
34
- print
34
+ print ()
35
35
36
36
except messagebird .client .ErrorException as e :
37
37
print ('\n An error occured while requesting a Message object:\n ' )
Original file line number Diff line number Diff line change 2
2
3
3
class Base (object ):
4
4
def load (self , data ):
5
- for name , value in data .items ():
5
+ for name , value in list ( data .items () ):
6
6
if hasattr (self , name ):
7
7
setattr (self , name , value )
8
8
Original file line number Diff line number Diff line change 12
12
keywords = ['messagebird' , 'sms' ],
13
13
install_requires = ['requests>=2.4.1' ],
14
14
license = 'BSD-2-Clause' ,
15
+ classifiers = [
16
+ 'Programming Language :: Python' ,
17
+ 'Programming Language :: Python :: 2' ,
18
+ 'Programming Language :: Python :: 3' ,
19
+ ],
15
20
)
You can’t perform that action at this time.
0 commit comments