summaryrefslogtreecommitdiff
path: root/CAO_Cards.py
diff options
context:
space:
mode:
Diffstat (limited to 'CAO_Cards.py')
-rw-r--r--CAO_Cards.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/CAO_Cards.py b/CAO_Cards.py
deleted file mode 100644
index 1feecef..0000000
--- a/CAO_Cards.py
+++ /dev/null
@@ -1,13 +0,0 @@
-class CAO_Cards():
- @staticmethod
- def get_white_cards(lang):
- ''' Read the file containing the white cards and return a list of cards '''
- with open('lang/' + lang + '/cards/white') as fd:
- return [line.strip() for line in fd]
-
- @staticmethod
- def get_black_cards(lang):
- ''' Read the file containing the black cards and return a list of cards '''
-
- with open('lang/' + lang + '/cards/black') as fd:
- return [line.strip() for line in fd]