From 204b0578104a139b230b59353540dccb347b7255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannes=20H=C3=B6ke?= Date: Thu, 19 May 2016 23:15:46 +0200 Subject: [PATCH] add encoding --- bot.py | 1 + card.py | 1 + chat_setting.py | 1 + database.py | 1 + deck.py | 1 + errors.py | 1 + game.py | 1 + game_manager.py | 1 + player.py | 1 + results.py | 1 + start_bot.py | 1 + test/test_game_manager.py | 1 + test/test_player.py | 1 + user_setting.py | 1 + utils.py | 1 + 15 files changed, 15 insertions(+) diff --git a/bot.py b/bot.py index 2f87297..ea4f180 100644 --- a/bot.py +++ b/bot.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/card.py b/card.py index a291e45..6a0496a 100644 --- a/card.py +++ b/card.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/chat_setting.py b/chat_setting.py index baccfee..c9cfc0c 100644 --- a/chat_setting.py +++ b/chat_setting.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/database.py b/database.py index 30b2e54..38b5cca 100644 --- a/database.py +++ b/database.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/deck.py b/deck.py index 0fda198..436a323 100644 --- a/deck.py +++ b/deck.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/errors.py b/errors.py index ac0575a..632e25a 100644 --- a/errors.py +++ b/errors.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/game.py b/game.py index 169e4fc..63c5edb 100644 --- a/game.py +++ b/game.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/game_manager.py b/game_manager.py index c26e150..a505ade 100644 --- a/game_manager.py +++ b/game_manager.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/player.py b/player.py index db24a09..a9b37bf 100644 --- a/player.py +++ b/player.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/results.py b/results.py index 674e0eb..5a0ff0a 100644 --- a/results.py +++ b/results.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/start_bot.py b/start_bot.py index e38fca2..a9730e7 100644 --- a/start_bot.py +++ b/start_bot.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/test/test_game_manager.py b/test/test_game_manager.py index 7cdb0f7..944833b 100644 --- a/test/test_game_manager.py +++ b/test/test_game_manager.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/test/test_player.py b/test/test_player.py index e65a13f..2e516f0 100644 --- a/test/test_player.py +++ b/test/test_player.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/user_setting.py b/user_setting.py index 54e2054..f44bd82 100644 --- a/user_setting.py +++ b/user_setting.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke diff --git a/utils.py b/utils.py index 7d327a8..6035b58 100644 --- a/utils.py +++ b/utils.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke