From f5edd5035d06adc7b6bceb1f521b4911706cde0b Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Wed, 29 Dec 2021 19:36:59 +0100 Subject: Import resource_stream to reduce size of lines Signed-off-by: Olivier Gayot --- swiftstory/cards.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'swiftstory') diff --git a/swiftstory/cards.py b/swiftstory/cards.py index 96438cc..7f28919 100644 --- a/swiftstory/cards.py +++ b/swiftstory/cards.py @@ -2,18 +2,18 @@ import json import os from typing import List -import pkg_resources +from pkg_resources import resource_stream class Cards: @staticmethod 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) + return json.load(resource_stream(__name__, + os.path.join("data/lang", lang, "cards/white.json"))) @staticmethod 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) + return json.load(resource_stream(__name__, + os.path.join("data/lang", lang, "cards/black.json"))) -- cgit v1.2.3