fix: add shapefile to python remapping

This commit is contained in:
Ruben Fiszel
2023-10-23 23:06:08 +02:00
parent 7199bbce73
commit 2bd629ecab
@@ -40,11 +40,10 @@ static PYTHON_IMPORTS_REPLACEMENT: phf::Map<&'static str, &'static str> = phf_ma
"playhouse" => "peewee",
"dns" => "dnspython",
"msoffcrypto" => "msoffcrypto-tool",
"tabula" => "tabula-py"
"tabula" => "tabula-py",
"shapefile" => "pyshp"
};
fn replace_import(x: String) -> String {
PYTHON_IMPORTS_REPLACEMENT
.get(&x)