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 3131 print (' scheduledDatetime : %s' % msg .scheduledDatetime )
3232 print (' createdDatetime : %s' % msg .createdDatetime )
3333 print (' recipients : %s\n ' % msg .recipients )
34- print
34+ print ()
3535
3636except messagebird .client .ErrorException as e :
3737 print ('\n An error occured while requesting a Message object:\n ' )
Original file line number Diff line number Diff line change 22
33class Base (object ):
44 def load (self , data ):
5- for name , value in data .items ():
5+ for name , value in list ( data .items () ):
66 if hasattr (self , name ):
77 setattr (self , name , value )
88
Original file line number Diff line number Diff line change 1212 keywords = ['messagebird' , 'sms' ],
1313 install_requires = ['requests>=2.4.1' ],
1414 license = 'BSD-2-Clause' ,
15+ classifiers = [
16+ 'Programming Language :: Python' ,
17+ 'Programming Language :: Python :: 2' ,
18+ 'Programming Language :: Python :: 3' ,
19+ ],
1520)
You can’t perform that action at this time.
0 commit comments