Fix more test failures

This commit is contained in:
Seamus Johnston 2023-04-21 11:22:30 -05:00
parent 78aae0b7b5
commit ff8b89fa13
No known key found for this signature in database
GPG key ID: 2F21225985069105
2 changed files with 6 additions and 1 deletions

View file

@ -40,7 +40,10 @@ except NameError:
pass
# Attn: these imports should NOT be at the top of the file
from .client import CLIENT, commands
try:
from .client import CLIENT, commands
except ImportError:
pass
__all__ = [
"CLIENT",