| 
1 |  | -# The MIT License (MIT)  | 
 | 1 | +# SPDX-FileCopyrightText: 2017 Dean Miller for Adafruit Industries  | 
2 | 2 | #  | 
3 |  | -# Copyright (c) 2017 Dean Miller for Adafruit Industries.  | 
4 |  | -#  | 
5 |  | -# Permission is hereby granted, free of charge, to any person obtaining a copy  | 
6 |  | -# of this software and associated documentation files (the "Software"), to deal  | 
7 |  | -# in the Software without restriction, including without limitation the rights  | 
8 |  | -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell  | 
9 |  | -# copies of the Software, and to permit persons to whom the Software is  | 
10 |  | -# furnished to do so, subject to the following conditions:  | 
11 |  | -#  | 
12 |  | -# The above copyright notice and this permission notice shall be included in  | 
13 |  | -# all copies or substantial portions of the Software.  | 
14 |  | -#  | 
15 |  | -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  | 
16 |  | -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  | 
17 |  | -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE  | 
18 |  | -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  | 
19 |  | -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,  | 
20 |  | -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN  | 
21 |  | -# THE SOFTWARE.  | 
 | 3 | +# SPDX-License-Identifier: MIT  | 
22 | 4 | 
 
  | 
23 | 5 | """  | 
24 | 6 | `adafruit_amg88xx` - AMG88xx GRID-Eye IR 8x8 IR sensor  | 
@@ -153,9 +135,9 @@ def temperature(self):  | 
153 | 135 |     def pixels(self):  | 
154 | 136 |         """Temperature of each pixel across the sensor in Celsius.  | 
155 | 137 | 
  | 
156 |  | -           Temperatures are stored in a two dimensional list where the first index is the row and  | 
157 |  | -           the second is the column. The first row is on the side closest to the writing on the  | 
158 |  | -           sensor."""  | 
 | 138 | +        Temperatures are stored in a two dimensional list where the first index is the row and  | 
 | 139 | +        the second is the column. The first row is on the side closest to the writing on the  | 
 | 140 | +        sensor."""  | 
159 | 141 |         retbuf = [[0] * _PIXEL_ARRAY_WIDTH for _ in range(_PIXEL_ARRAY_HEIGHT)]  | 
160 | 142 |         buf = bytearray(3)  | 
161 | 143 | 
 
  | 
 | 
0 commit comments