~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to openerp_print/pyPdf/filters.py

  • Committer: Moises Lopez
  • Date: 2014-09-29 18:26:50 UTC
  • mto: (543.7.589 70-addons-vauxoo)
  • mto: This revision was merged to the branch mainline in revision 880.
  • Revision ID: moylop260@vauxoo.com-20140929182650-jumkpmwf04vdlolw
[FIX] Fix unused-import with autoflake

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
    # Unable to import zlib.  Attempt to use the System.IO.Compression
53
53
    # library from the .NET framework. (IronPython only)
54
54
    import System
55
 
    from System import IO, Collections, Array
 
55
    from System import Array
 
56
    from System import IO
56
57
 
57
58
    def _string_to_bytearr(buf):
58
59
        retval = Array.CreateInstance(System.Byte, len(buf))