Skip to content

Commit 62743b1

Browse files
committed
fix formating
1 parent 985254e commit 62743b1

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

GEMINI.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
- **Style Guidelines**: Follow the rules in @./docs/ai/coding_conventions.md for every response involving code.
2020
- **Mandatory Checks**: Run the commands in @./docs/ai/mandatory_checks.md after making any changes to the code and before committing.
2121

22-
2322
## 4. Mandatory AI Workflow for Coding Tasks
2423
1. **Required Reading**: You MUST use `view_file` to read the contents of @./docs/ai/coding_conventions.md and @./docs/ai/mandatory_checks.md at the very beginning of EVERY coding task.
2524
2. **Initial Checklist**: Every `task.md` you create MUST include a section for **Mandatory Checks** from @./docs/ai/mandatory_checks.md.

docs/ai/coding_conventions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ async def get_task_status(task: Task) -> TaskStatus:
1616

1717
**Incorrect (Do NOT do this):**
1818
```python
19-
def get_task(task): # Missing type hints
20-
return task.status # Potential None return without handling
19+
async def get_task_status(task): # Missing type hints for argument and return value
20+
return task.status
2121
```

0 commit comments

Comments
 (0)