Skip to content

Commit 184bc79

Browse files
committed
go to version 0.1.14
1 parent 74e8793 commit 184bc79

5 files changed

Lines changed: 21 additions & 5 deletions

File tree

Source/CommandAlive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
#
88

9-
from Command import *
9+
from .Command import *
1010

1111
class CommandAlive(Command):
1212
@staticmethod

Source/CommandListRunningCommands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
#
88

9-
from Command import *
9+
from .Command import *
1010
import tabulate
1111
import re
1212

Source/CommandStop.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
#
77
#
88

9-
from Command import *
10-
import Utilities
9+
from .Command import *
10+
from . import Utilities
1111

1212
class CommandStop(Command):
1313
@staticmethod

Source/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from .Bot import Bot
2+
from .BackgroundTask import BackgroundTask
3+
from .BackgroundTaskManager import BackgroundTaskManager
4+
from .ChatRoom import ChatRoom
5+
from .Chatcommunicate import Chatcommunicate
6+
from .Command import Command
7+
from .CommandAlive import CommandAlive
8+
from .CommandListRunningCommands import CommandListRunningCommands
9+
from .CommandManager import CommandManager
10+
#from .CommandPrivilegeUser import CommandPrivilegeUser
11+
from .CommandStop import CommandStop
12+
from .PrivilegeType import PrivilegeType
13+
from .PrivilegedChatUser import PrivilegedChatUser
14+
from . import Utilities

__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
from .Source/Bot import Bot
1+
"""
2+
The Botpy package
3+
"""

0 commit comments

Comments
 (0)