Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
Fix attr ordering in CheckAnnotation
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Oct 24, 2018
1 parent e5ab893 commit a4bed64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions check_in/github_checks_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ class CheckAnnotation:
blob_href: str = str_attrib()
start_line: int = int_attrib()
end_line: int = int_attrib()
start_column: int = optional_int_attrib()
end_column: int = optional_int_attrib()
annotation_level: str = str_attrib(
validator=attr.validators.in_(
(
Expand All @@ -61,6 +59,8 @@ class CheckAnnotation:
)
)
message: str = str_attrib()
start_column: Optional[int] = optional_int_attrib()
end_column: Optional[int] = optional_int_attrib()
title: Optional[str] = optional_str_attrib()
raw_details: Optional[str] = optional_str_attrib()

Expand Down

0 comments on commit a4bed64

Please sign in to comment.