remove underscore from package name

remove underscore from package name
This commit is contained in:
onyx-and-iris
2022-03-04 14:22:29 +00:00
parent 8f95942fbd
commit 85f74b20cb
12 changed files with 852 additions and 10 deletions

View File

@@ -1,9 +1,8 @@
import vban_cmd
from vban_cmd import kinds
from vban_cmd.channel import Modes
import vbancmd
from vbancmd import kinds
from vbancmd.channel import Modes
import socket
from threading import Thread
from time import sleep
_kind = 'potato'
opts = {
@@ -14,7 +13,7 @@ opts = {
'channel': 3
}
vbanrs = {kind.id: vban_cmd.connect(_kind, **opts) for kind in kinds.all}
vbanrs = {kind.id: vbancmd.connect(_kind, **opts) for kind in kinds.all}
tests = vbanrs[_kind]
def setup_package():