This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from understand import Newb | |
Newb.call_understand() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is what I tried to do. | |
class Newb: | |
def understand(): | |
print("thanks for helping") | |
return | |
def call_understand(): | |
understand() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Import Slack Client | |
from slackclient import SlackClient | |
## Import Time | |
import time | |
#Set Bot Name | |
BOT_NAME = '' | |
#We will give the token in a moment |