2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-21 06:16:29 +00:00

provide backport for 3.7

This commit is contained in:
Matthias
2021-11-04 10:24:05 +01:00
parent a88f144239
commit b54f9c9c13
2 changed files with 7 additions and 1 deletions

View File

@ -19,9 +19,14 @@ import string
import shutil
import sys
import importlib
from importlib import metadata
from datetime import datetime
try:
from importlib import metadata
except:
import importlib_metadata as metadata
import moneyed
import yaml