From 95ca11e98c47c3e8e57093c37134a6f51bcb6f30 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Wed, 29 Dec 2021 17:05:21 +0100 Subject: Add type hinting everywhere so we can enable strict mypy options Signed-off-by: Olivier Gayot --- swiftstory/cards.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'swiftstory/cards.py') diff --git a/swiftstory/cards.py b/swiftstory/cards.py index 62f1e37..96438cc 100644 --- a/swiftstory/cards.py +++ b/swiftstory/cards.py @@ -1,18 +1,19 @@ import json import os +from typing import List import pkg_resources class Cards: @staticmethod - def get_white_cards(lang): + def get_white_cards(lang: str) -> List[str]: ''' Read the file containing the white cards and return a list of cards ''' fh = pkg_resources.resource_stream(__name__, os.path.join("data/lang", lang, "cards/white.json")) return json.load(fh) @staticmethod - def get_black_cards(lang): + def get_black_cards(lang: str) -> List[str]: ''' Read the file containing the black cards and return a list of cards ''' fh = pkg_resources.resource_stream(__name__, os.path.join("data/lang", lang, "cards/black.json")) return json.load(fh) -- cgit v1.2.3