Skip to content

Commit 204b057

Browse files
committed
add encoding
1 parent 9936d97 commit 204b057

15 files changed

+15
-0
lines changed

bot.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

card.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

chat_setting.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

database.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

deck.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

errors.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

game.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

game_manager.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

player.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

results.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

start_bot.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

test/test_game_manager.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

test/test_player.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

user_setting.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23
#
34
# Telegram bot to play UNO in group chats
45
# Copyright (c) 2016 Jannes Höke <[email protected]>

0 commit comments

Comments
 (0)