Skip to content

Commit

Permalink
BaseTools: BinToPcd: Remove xdrlib dependency
Browse files Browse the repository at this point in the history
The xdrlib dependency was removed in commit
5cadb8c 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 <[email protected]>
  • Loading branch information
antklein authored and Javagedes committed Jul 1, 2024
1 parent e8ae6a9 commit b6b24b7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions BaseTools/Scripts/BinToPcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@
'''
from __future__ import print_function

import sys
# MU_CHANGE BEGIN: isort imports
import argparse
import re
import xdrlib
import io
import struct
import math
import re
import struct
import sys
# MU_CHANGE END

#
# Globals for help information
Expand Down

0 comments on commit b6b24b7

Please sign in to comment.