Skip to content

Commit cffea71

Browse files
style: format code with autopep8
Format code with autopep8 This commit fixes the style issues introduced in 8b019c4 according to the output from Autopep8. Details: None
1 parent 2bb1c25 commit cffea71

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Automated Game Testing Framework/game_testing_framework.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import unittest
22

3+
34
class Game:
45
def __init__(self):
56
self.is_running = False
@@ -25,6 +26,7 @@ def quit(self):
2526
self.is_running = False
2627
return "Game quit."
2728

29+
2830
class TestGame(unittest.TestCase):
2931
@classmethod
3032
def setUpClass(cls):
@@ -53,5 +55,6 @@ def test_non_running_actions(self):
5355
result = self.game.play("move_forward")
5456
self.assertEqual(result, "Game is not running.")
5557

58+
5659
if __name__ == "__main__":
5760
unittest.main()

0 commit comments

Comments
 (0)