You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Create an Issue to report a bug with/about the library.
3
+
title: "[BUG] "
4
+
labels: ["bug"]
5
+
assignees:
6
+
- goverfl0w
7
+
- DeltaXWizard
8
+
- EdVraz
9
+
body:
10
+
- type: markdown
11
+
id: thanks
12
+
attributes:
13
+
value: |
14
+
Thank you for taking the time to fill out this bug report!
15
+
We rely on users to tell us things that we might not find on our own,
16
+
and your help is greatly valued by the team and others contributing.
17
+
- type: textarea
18
+
id: process
19
+
attributes:
20
+
label: Describe the bug.
21
+
description: Please give us an in-depth description of the bug you are having.
22
+
placeholder: When trying to use feature X, I was unable to make task Y work.
23
+
validations:
24
+
required: true
25
+
- type: textarea
26
+
id: steps
27
+
attributes:
28
+
label: List the steps.
29
+
description: Please give us a step-by-step process of how you were able to produce this.
30
+
placeholder: |
31
+
1. Import the module in Python.
32
+
2. Create a client variable for the library.
33
+
3. Try creating a slash command.
34
+
4. See the traceback error given in the terminal or logger file.
35
+
validations:
36
+
required: true
37
+
- type: textarea
38
+
id: expectation
39
+
attributes:
40
+
label: What you expected.
41
+
description: Please tell us what you expect for this to do when it ran.
42
+
placeholder: When I create a slash command, the command should be created and functional.
43
+
validations:
44
+
required: true
45
+
- type: textarea
46
+
id: result
47
+
attributes:
48
+
label: What you saw.
49
+
description: Please tell us what you found when you actually ran this.
50
+
placeholder: Instead, I received this traceback error given from my Python terminal.
51
+
value: |
52
+
Instead, I received this traceback error given from my Python terminal:
53
+
```
54
+
Traceback (most recent call last):
55
+
File "A:\Amogus\Python\interactions-bot\main.py", line 6
56
+
raise SussyBaka("your code doesn't work, silly!")
57
+
^
58
+
59
+
SussyBaka: your code doesn't work, silly!
60
+
```
61
+
validations:
62
+
required: true
63
+
- type: dropdown
64
+
id: version
65
+
attributes:
66
+
label: What version of the library did you use?
67
+
multiple: false
68
+
options:
69
+
- release
70
+
- stable
71
+
- unstable
72
+
validations:
73
+
required: true
74
+
- type: checkboxes
75
+
id: accept
76
+
attributes:
77
+
label: Code of Conduct
78
+
description: By submitting this Issue, you agree to follow our [contribution requirements.](https://github.com/interactions-py/library/blob/unstable/CONTRIBUTING.rst)
79
+
options:
80
+
- label: I agree to follow the contribution requirements.
0 commit comments