File: question.yml

package info (click to toggle)
python-telegram-bot 22.5-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 11,940 kB
  • sloc: python: 92,703; makefile: 179; sh: 4
file content (70 lines) | stat: -rw-r--r-- 2,705 bytes parent folder | download | duplicates (2)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Question
description: Get help with errors or general questions
labels: ["question"]
type: '❔ question'

body:
  - type: markdown
    attributes:
      value: |
        Hey there, you have a question? We are happy to answer. Please make sure no similar question was opened already.

        To make it easier for us to help you, please read this [article](https://github.com/python-telegram-bot/python-telegram-bot/wiki/Ask-Right).

        Please mind that there is also a users' [Telegram group](https://t.me/pythontelegrambotgroup) for questions about the library. Questions asked there might be answered quicker than here. Moreover, [GitHub Discussions](https://github.com/python-telegram-bot/python-telegram-bot/discussions) offer a slightly better format to discuss usage questions.
        
        If you have asked the same question elsewhere (e.g. the [Telegram group](https://t.me/pythontelegrambotgroup) or [StackOverflow](https://stackoverflow.com/questions/tagged/python-telegram-bot)), provide a link to that thread.

  - type: textarea
    id: issue-faced
    attributes:
      label: "Issue I am facing"
      description: "Please describe the issue here in as much detail as possible"
    validations:
      required: true
      
  - type: textarea
    id: traceback
    attributes:
      label: "Traceback to the issue"
      description: "If you are facing a specific error message, please paste the traceback here. This will be automatically formatted into python code, so no need for backticks."
      placeholder: |
        Traceback (most recent call last):
          File "/home/bot.py", line 1, in main
            foo = bar()
          ...
        telegram.error.BadRequest: Traceback not found
      render: python
        
  - type: textarea
    id: related-code
    attributes:
      label: "Related part of your code"
      description: "This will be automatically formatted into code (python), so no need for backticks."
      placeholder: |
        logging.basicConfig(
            format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO
        )

        logger = logging.getLogger(__name__)
      render: python

  - type: markdown
    attributes:
      value: "### Configuration"

  - type: input
    id: operating-system
    attributes:
      label: Operating System
    validations: 
      required: true
      
  - type: textarea
    id: versions
    attributes:
      label: Version of Python, python-telegram-bot & dependencies
      description: Paste the output of `$ python -m telegram` here. This will be automatically formatted into code, so no need for backticks.
      render: shell
    validations: 
      required: true