mirror of https://github.com/acidanthera/audk.git
BaseTools: BinToPcd: Remove xdrlib dependency
The xdrlib dependency was removed in commit
5cadb8ce21
but the actual import of the
module was not removed. This commit removes the import of xdrlib and
sorts the imports.
Signed-off-by: Joey Vagedes <joey.vagedes@gmail.com>
This commit is contained in:
parent
3b2025969e
commit
8c09d862bf
|
@ -10,13 +10,12 @@ BinToPcd
|
|||
'''
|
||||
from __future__ import print_function
|
||||
|
||||
import sys
|
||||
import argparse
|
||||
import re
|
||||
import xdrlib
|
||||
import io
|
||||
import struct
|
||||
import math
|
||||
import re
|
||||
import struct
|
||||
import sys
|
||||
|
||||
#
|
||||
# Globals for help information
|
||||
|
|
Loading…
Reference in New Issue