Update type hint in spdx.py

This commit is contained in:
Tulir Asokan 2020-04-22 23:10:06 +03:00
parent 593f2ae1d8
commit 4b88971b3b

View file

@ -13,12 +13,12 @@
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from typing import Dict
from typing import Dict, Optional
import zipfile
import pkg_resources
import json
spdx_list = None
spdx_list: Optional[Dict[str, Dict[str, str]]] = None
def load() -> None: