-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add whitespace error checking to GitHub Actions (#311)
* Fix whitespace errors As detected with `git diff --check`. * Add a job to check for whitespace errors I called it "lint" so that other checks could be added to it later. * Bump copyright years in changed files
- Loading branch information
Roman Donchenko
authored
Jun 25, 2021
1 parent
f53d423
commit d2073b8
Showing
18 changed files
with
60 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,3 @@ LICENSE text | |
*.gif binary | ||
*.ttf binary | ||
*.pdf binary | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
|
||
# Copyright (C) 2019-2020 Intel Corporation | ||
# Copyright (C) 2019-2021 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
|
||
# Copyright (C) 2019-2020 Intel Corporation | ||
# Copyright (C) 2019-2021 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# Copyright (C) 2020 Intel Corporation | ||
# Copyright (C) 2020-2021 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,3 @@ def import_prediction(pred): | |
# - | ||
else: | ||
raise NotImplementedError("Can't convert %s" % type(pred)) | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,3 @@ | |
name1 1 2 | ||
name0 1 name1 1 | ||
name0 1 name1 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,49 @@ | ||
item { | ||
id: 1 | ||
name: 'label_0' | ||
id: 1 | ||
name: 'label_0' | ||
} | ||
|
||
item { | ||
id: 2 | ||
name: 'label_1' | ||
id: 2 | ||
name: 'label_1' | ||
} | ||
|
||
item { | ||
id: 3 | ||
name: 'label_2' | ||
id: 3 | ||
name: 'label_2' | ||
} | ||
|
||
item { | ||
id: 4 | ||
name: 'label_3' | ||
id: 4 | ||
name: 'label_3' | ||
} | ||
|
||
item { | ||
id: 5 | ||
name: 'label_4' | ||
id: 5 | ||
name: 'label_4' | ||
} | ||
|
||
item { | ||
id: 6 | ||
name: 'label_5' | ||
id: 6 | ||
name: 'label_5' | ||
} | ||
|
||
item { | ||
id: 7 | ||
name: 'label_6' | ||
id: 7 | ||
name: 'label_6' | ||
} | ||
|
||
item { | ||
id: 8 | ||
name: 'label_7' | ||
id: 8 | ||
name: 'label_7' | ||
} | ||
|
||
item { | ||
id: 9 | ||
name: 'label_8' | ||
id: 9 | ||
name: 'label_8' | ||
} | ||
|
||
item { | ||
id: 10 | ||
name: 'label_9' | ||
id: 10 | ||
name: 'label_9' | ||
} | ||
|
6 changes: 3 additions & 3 deletions
6
tests/assets/widerface_dataset/wider_face_split/wider_face_train_bbx_gt.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
0--Parade/0_Parade_image_01.jpg | ||
1 | ||
1 2 2 2 0 0 0 0 0 0 | ||
1 2 2 2 0 0 0 0 0 0 | ||
1--Handshaking/1_Handshaking_image_02.jpg | ||
2 | ||
1 1 2 2 0 0 1 0 0 0 | ||
5 1 2 2 0 0 1 0 0 0 | ||
1 1 2 2 0 0 1 0 0 0 | ||
5 1 2 2 0 0 1 0 0 0 |
6 changes: 3 additions & 3 deletions
6
tests/assets/widerface_dataset/wider_face_split/wider_face_val_bbx_gt.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
0--Parade/0_Parade_image_03.jpg | ||
3 | ||
0 0 1 1 2 0 0 0 2 0 | ||
3 2 1 2 0 0 0 1 0 0 | ||
5 6 1 1 2 0 0 0 2 0 | ||
0 0 1 1 2 0 0 0 2 0 | ||
3 2 1 2 0 0 0 1 0 0 | ||
5 6 1 1 2 0 0 0 2 0 |