Skip to content

Commit

Permalink
mdformat-gfm no issues
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Dec 20, 2023
1 parent 7537bd1 commit 347c3c4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 654 deletions.
40 changes: 20 additions & 20 deletions test-13/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@

1. Add a serializer class

```python
class RecurringEventSerializer(serializers.ModelSerializer): # (1)!
"""Used to retrieve recurring_event info"""
```python
class RecurringEventSerializer(serializers.ModelSerializer): # (1)!
"""Used to retrieve recurring_event info"""

class Meta:
model = RecurringEvent # (2)!
fields = (
"uuid",
"name",
"start_time",
"duration_in_min",
"video_conference_url",
"additional_info",
"project",
)
read_only_fields = (
"uuid", # (3)!
"created_at",
"updated_at",
)
```
class Meta:
model = RecurringEvent # (2)!
fields = (
"uuid",
"name",
"start_time",
"duration_in_min",
"video_conference_url",
"additional_info",
"project",
)
read_only_fields = (
"uuid", # (3)!
"created_at",
"updated_at",
)
```
Loading

0 comments on commit 347c3c4

Please sign in to comment.