Skip to content

Commit 9d72f38

Browse files
committed
Fix lint
1 parent dd99ebd commit 9d72f38

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

chronos/pydantic_schema.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,21 @@ class TCPublicProfileWebhook(BaseModel):
4949
Pydantic model for the TCPublicProfileWebhook. This is the payload from for the public profile endpoint
5050
"""
5151

52-
id = int
53-
deleted = bool
54-
first_name = str
55-
last_name = str
56-
town = str
57-
country = str
58-
review_rating = float
59-
review_duration = int
60-
location = dict
61-
photo = str
62-
extra_attributes = list
63-
skills = list
64-
labels = list
65-
created = str
66-
release_timestamp = str
52+
id: int
53+
deleted: bool
54+
first_name: str
55+
last_name: str
56+
town: str
57+
country: str
58+
review_rating: float
59+
review_duration: int
60+
location: dict
61+
photo: str
62+
extra_attributes: list
63+
skills: list
64+
labels: list
65+
created: str
66+
release_timestamp: str
6767
request_time: int = Field(alias='_request_time')
6868

6969

0 commit comments

Comments
 (0)