return format of image ex: PNG, JPEG, GIF, etc
(self)
| 2009 | |
| 2010 | @property |
| 2011 | def format(self): |
| 2012 | """ |
| 2013 | return format of image |
| 2014 | ex: PNG, JPEG, GIF, etc |
| 2015 | """ |
| 2016 | out = self.get() |
| 2017 | if out: |
| 2018 | return out.format |
| 2019 | |
| 2020 | @property |
| 2021 | def thumbnail(self): |
no test coverage detected