Skip to content

Commit

Permalink
Removed symmetric letters
Browse files Browse the repository at this point in the history
Test won't work with axially symmetric shapes
This is because letters will look the same when rotated
  • Loading branch information
ColmBhandal committed Feb 22, 2023
1 parent c011511 commit eb872e0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions game_gia.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,9 @@ def update_layout_with_new_question(self, func):


class RTest(SingleTestInterface):
LETTER = random.choice("ABCDEFGHIJKLMNOPQRSTUVWXYZ")

def design(self):
RTest.LETTER = random.choice("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
RTest.LETTER = random.choice("ABCDEFGJKLNPQRSZ")
h_layout = BoxLayout(orientation='vertical',
pos_hint={'center_x': 0.5, 'center_y': 0.5},
size_hint=(0.8, 0.8))
Expand Down

0 comments on commit eb872e0

Please sign in to comment.