|
1 | 1 | ---
|
2 | 2 | name: Bug report
|
3 |
| -about: Create a report to help us improve |
4 |
| -title: '' |
| 3 | +about: Create a bug report to help us improve. |
| 4 | +title: "bug: " |
5 | 5 | labels: unconfirmed
|
6 |
| -assignees: '' |
7 |
| - |
| 6 | +assignees: [pawamoy] |
8 | 7 | ---
|
9 | 8 |
|
10 |
| -**Describe the bug** |
11 |
| -A clear and concise description of what the bug is. |
| 9 | +### Description of the bug |
| 10 | +<!-- Please provide a clear and concise description of what the bug is. --> |
| 11 | + |
| 12 | +### To Reproduce |
| 13 | +<!-- Please provide a Minimal Reproducible Example (MRE) if possible. |
| 14 | + Try to boil down the problem to a few lines of code. |
| 15 | + Your code should run by simply copying and pasting it. |
| 16 | +
|
| 17 | + Example: |
| 18 | +
|
| 19 | + ``` |
| 20 | + git clone https://github.com/username/repro |
| 21 | + cd repro |
| 22 | + python -m venv .venv |
| 23 | + . .venv/bin/activate |
| 24 | + pip install -r requirements.txt |
| 25 | + ... # command or code showing the issue |
| 26 | + ``` |
| 27 | +--> |
| 28 | + |
| 29 | +``` |
| 30 | +WRITE MRE / INSTRUCTIONS HERE |
| 31 | +``` |
| 32 | + |
| 33 | +### Full traceback |
| 34 | +<!-- Please provide the full error message / traceback if any, by pasting it in the code block below. |
| 35 | + No screenshots! --> |
| 36 | + |
| 37 | +<details><summary>Full traceback</summary> |
| 38 | + |
| 39 | +```python |
| 40 | +PASTE TRACEBACK HERE |
| 41 | +``` |
| 42 | + |
| 43 | +</details> |
12 | 44 |
|
13 |
| -**To Reproduce** |
14 |
| -Steps to reproduce the behavior: |
15 |
| -1. Go to '...' |
16 |
| -2. Run command '...' |
17 |
| -3. Scroll down to '...' |
18 |
| -4. See error |
| 45 | +### Expected behavior |
| 46 | +<!-- Please provide a clear and concise description of what you expected to happen. --> |
19 | 47 |
|
20 |
| -**Expected behavior** |
21 |
| -A clear and concise description of what you expected to happen. |
| 48 | +### Environment information |
| 49 | +<!-- Please run the following command in your repository and paste its output below it, |
| 50 | + redacting sensitive information. --> |
22 | 51 |
|
23 |
| -**Screenshots** |
24 |
| -If applicable, add screenshots to help explain your problem. |
| 52 | +```bash |
| 53 | +python -m mkdocstrings_handlers.debug # | xclip -selection clipboard |
| 54 | +``` |
25 | 55 |
|
26 |
| -**System (please complete the following information):** |
27 |
| -- `mkdocstrings-python` version: [e.g. 0.2.1] |
28 |
| -- Python version: [e.g. 3.8] |
29 |
| -- OS: [Windows/Linux] |
| 56 | +PASTE OUTPUT HERE |
30 | 57 |
|
31 |
| -**Additional context** |
32 |
| -Add any other context about the problem here. |
| 58 | +### Additional context |
| 59 | +<!-- Add any other relevant context about the problem here, |
| 60 | + like links to other issues or pull requests, screenshots, etc. |
| 61 | +--> |
0 commit comments