Remove unused variable and import in agipdutils.py
Description
This removes some unused import and variable in agipdutils.py
, and adds some type hinting.
These issues were spotted with flake.
How Has This Been Tested?
The unused import was tested by importing agipdutils.py
and ensuring that there are no ImportErrors.
The unused argument was tested with flake8, and as the scope of the function is limited, we are sure that there are no calls to it with the unused argument.
Types of changes
- Cleanup
Checklist:
- My code follows the code style of this project.