diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-04-10 18:31:58 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-04-17 15:47:16 +0200 |
commit | ff5aee7158bd46e4ae22bc431adadd7060a6e277 (patch) | |
tree | 120f0fe58d2872aec800b7b794dc9dd5222a9e44 /ishtar_common/ignf_utils.py | |
parent | 71a256dc52ed3391638dcf9669cf57d75475d326 (diff) | |
download | Ishtar-ff5aee7158bd46e4ae22bc431adadd7060a6e277.tar.bz2 Ishtar-ff5aee7158bd46e4ae22bc431adadd7060a6e277.zip |
Add bandit scan tool to Makefile - mark some security issue as non relevants
Diffstat (limited to 'ishtar_common/ignf_utils.py')
-rw-r--r-- | ishtar_common/ignf_utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ishtar_common/ignf_utils.py b/ishtar_common/ignf_utils.py index 2f167299c..94429d458 100644 --- a/ishtar_common/ignf_utils.py +++ b/ishtar_common/ignf_utils.py @@ -160,7 +160,8 @@ IGNF = { def extract_from_csv(filename): - tree = ET.parse(filename) + # nosec: parsing only used by programmer to generate previous dict from a trusted source + tree = ET.parse(filename) # nosec root = tree.getroot() ns = "{http://www.isotc211.org/2005/gmx}" ns_gml = "{http://www.opengis.net/gml}" |