1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug"]
projects: []
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
validations:
required: true
- type: textarea
id: python-error
attributes:
label: The python error
description: The whole error python gives you
placeholder: |
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'intelligence'
render: shell
validations:
required: false
- type: input
id: python_version
attributes:
label: Your python version
validations:
required: true
- type: input
id: os
attributes:
label: Your OS inlcuding your version
validations:
required: true
|