Skip to content

Commit 5d939b1

Browse files
committed
Fix failing py3 builds attempt 3
1 parent 8eabae4 commit 5d939b1

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

telebot/apihelper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
import requests
44
import six
55
import types
6-
import util
6+
7+
from telebot import util
78
from util import logger
89

910
API_URL = "https://api.telegram.org/bot{0}/{1}"

telebot/telebot_class.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
import re
55
import six
66

7-
import apihelper
8-
import util
9-
from util import logger
7+
from telebot import apihelper
8+
from telebot import util
9+
from telebot import logger
1010

1111

1212
class TeleBot(apihelper.TelegramApiInterface):

telebot/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import json
44
import six
55

6-
import util
6+
from telebot import util
77

88

99
class JsonSerializable:

0 commit comments

Comments
 (0)