Skip to content

Commit fd17a68

Browse files
committed
fix changes
1 parent 157a165 commit fd17a68

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

brain_games/games/brain_calc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from brain_games.sample import samples
21
import random
2+
from brain_games.sample import samples
33

44

55
CON_ANSWER = 'What is the result of the expression?'

brain_games/games/brain_even.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from brain_games.sample import samples
21
import random
2+
from brain_games.sample import samples
33

44

55
CON_ANSWER = 'Answer "yes" if the number is even, otherwise answer "no".'

brain_games/games/brain_gcd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from brain_games.sample import samples
21
import random
2+
from brain_games.sample import samples
33

44

55
CON_ANSWER = 'Find the greatest common divisor of given numbers.'

brain_games/games/brain_prime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from brain_games.sample import samples
21
import random
2+
from brain_games.sample import samples
33

44

55
CON_ANSWER = 'Answer "yes" if given number is prime. Otherwise answer "no".'

brain_games/games/brain_progression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from brain_games.sample import samples
21
import random
2+
from brain_games.sample import samples
33

44

55
CON_ANSWER = 'What number is missing in the progression?'

0 commit comments

Comments
 (0)