Browse Source

Python 2 compatibility is basically impossible.

Implicit Relative Imports ruin the day here (`import logging`) and so why not ruin Python 2's day with type hinting?
pull/160/head
A5rocks 6 years ago
parent
commit
95900ba73c
  1. 3
      disco/util/runner.py
  2. 4
      docs/bot_tutorial/programmatic_running.md

3
disco/util/runner.py

@ -1,3 +1,4 @@
""" Utility module to help run a bot programmatically. Breaks in Python 2... """
import logging
from gevent import monkey
@ -10,7 +11,7 @@ from disco.bot import Bot, BotConfig # noqa: E402
from disco.util.logging import setup_logging # noqa: E402
def bot_creator(config: dict = {}, bot: bool = True, autosharded: bool = False, **kwargs):
def bot_creator(config: dict = {}, bot: bool = True, autosharded: bool = False, **kwargs): # noqa: E999
"""
Create a bot object and return it to be run without the cli.

4
docs/bot_tutorial/programmatic_running.md

@ -1,5 +1,9 @@
# CLI-less Running
{% hint style='tip' %}
This only works for Python 3.
{% endhint %}
In certain environments, it is either impossible
to get to a console, or completely impractical.
Even if you are not using said environments, being

Loading…
Cancel
Save