Skip to content

Commit 4392ddc

Browse files
committed
TASK: Specify encoding in files
1 parent 8ebee16 commit 4392ddc

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

game/dealer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from game.player import Player
24

35

game/player.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
__author__ = 'Rico'
24

35

gamehandler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
import random
24
import string
35

statehandler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from userstate import UserState
24

35

tests/test_blackJack.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from unittest import TestCase
24

35
from database.db_wrapper import DBwrapper

userstate.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
class UserState(object):
24
IDLE = 0
35
COMMENTING = 1

0 commit comments

Comments
 (0)