Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit b77ce5a

Browse files
style: auto fixes from pre-commit hooks
1 parent 1a5cf99 commit b77ce5a

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
TOKEN=
1+
TOKEN=

.github/workflows/build_bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
- name: Build bot
2525
run: "python3 _orangcbot"
2626
env:
27-
PR_TESTING: 1
27+
PR_TESTING: 1

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
- name: Lint
2323
run: "black --check ."
2424
env:
25-
PR_TESTING: 1
25+
PR_TESTING: 1

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ repos:
3535
name: Check for only one newline character at EOL.
3636
- id: trailing-whitespace
3737
name: Check for trailing whitespace.
38-
args: [--markdown-linebreak-ext=md]
38+
args: [--markdown-linebreak-ext=md]

_orangcbot/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
from os import environ
2+
23
from dotenv import load_dotenv
34

45
load_dotenv()
56
import nextcord
6-
from nextcord.ext import commands
77
from nextcord import Intents
8+
from nextcord.ext import commands
89

910
bot = commands.Bot(
1011
intents=Intents.all(),

_orangcbot/extensions/forum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# INCOMPLETED
22

3-
from nextcord.ext import commands
43
import nextcord
4+
from nextcord.ext import commands
55

66

77
class Forum(commands.Cog):

_orangcbot/extensions/fun.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
import nextcord
12
from nextcord.ext import commands
23
from psl_dns import PSL
3-
import nextcord
44

55
_psl = PSL()
6-
from typing import Optional
76
from random import choice
7+
from typing import Optional
88

99
_bonk_ans = ["Ouch!", "It hurts!", "Ohh noooo", "Pleaseeeeeee don't hurt me..."]
1010

_orangcbot/extensions/tags.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
from nextcord.ext import commands
2-
31
import nextcord
2+
from nextcord.ext import commands
43

54
nohelp = """
65
Hey you! This is not a help channel!\n

_orangcbot/texts/nohelp.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Hey you! This is not a help channel!
22
We have a help channel for a reason, <#1155589227728339074>.
33
Please use that as a help channel. We need you to open a thread, even if it is a tiny problem.
44
So... **Enjoy troll answers past this message and take them with a pinch of salt. The action of following any help in this channel past this message is at your own risk. You've been warned.**
5-
Have fun!
5+
Have fun!

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
psl-dns
22
nextcord
33
python-dotenv
4-
onami
4+
onami

0 commit comments

Comments
 (0)