Skip to content

Commit

Permalink
Merge branch 'master' into FEAT/Femtolink-metrics-enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
EncryptEx committed Oct 10, 2023
2 parents 0161b67 + 9dd4f09 commit 7041f34
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ OWNER=12345
ANNOUNCEMENTS=
SECURITYGUILD=
SECURITY=
BANNEDWORDS=
FEMTOLINK=
BANNEDWORDS=
6 changes: 4 additions & 2 deletions bot.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import base64
import datetime
import json
import os
import sqlite3
import sys
import requests
import urllib
from email import message
from os import listdir
from os.path import isfile
from os.path import join
from pydoc import describe
from time import time

import discord
Expand All @@ -24,7 +27,6 @@
from get_enviroment import SECURITY_CHANNEL
from get_enviroment import SECURITY_GUILD
from get_enviroment import SWEAR_WORDS_LIST
from get_enviroment import FEMTOLINK
from get_enviroment import TOKEN

# Language Loading
Expand Down
1 change: 0 additions & 1 deletion get_enviroment.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@
SECURITY_GUILD = os.getenv("SECURITYGUILD")
SECURITY_CHANNEL = os.getenv("SECURITY")
SWEAR_WORDS_LIST = os.getenv("BANNEDWORDS", "").split(",")
FEMTOLINK = os.getenv("FEMTOLINK", "")

0 comments on commit 7041f34

Please sign in to comment.