Skip to content

Commit 2531c69

Browse files
committed
Linted, reformatted per pre-commit
1 parent c0eda05 commit 2531c69

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

LICENSES/PSF-2.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,4 +276,4 @@ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
276276
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
277277
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
278278
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
279-
PERFORMANCE OF THIS SOFTWARE.
279+
PERFORMANCE OF THIS SOFTWARE.

circuitpython_csv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ class DictReader:
178178

179179
def __init__(
180180
self,
181-
f: io.TextIOWrapper,
181+
f: io.TextIOWrapper, # pylint: disable=invalid-name
182182
fieldnames: Optional[Sequence[str]] = None,
183183
restkey: Optional[str] = None,
184184
restval: Optional[Any] = None,
@@ -230,7 +230,7 @@ class DictWriter:
230230

231231
def __init__(
232232
self,
233-
f: io.TextIOWrapper,
233+
f: io.TextIOWrapper, # pylint: disable=invalid-name
234234
fieldnames: Sequence[str],
235235
restval: str = "",
236236
extrasaction: str = "raise",

0 commit comments

Comments
 (0)