Delinting

This commit is contained in:
James R. Barlow
2021-01-26 01:45:04 -08:00
parent 1084724937
commit ef1e7a814e
8 changed files with 19 additions and 18 deletions
+1 -2
View File
@@ -31,7 +31,6 @@
import argparse
import os
import re
from collections import namedtuple
from itertools import chain
from math import atan, cos, sin
from pathlib import Path
@@ -45,7 +44,7 @@ from reportlab.pdfgen.canvas import Canvas
Element = ElementTree.Element
class Rect(NamedTuple):
class Rect(NamedTuple): # pylint: disable=inherit-non-class
"""A rectangle for managing PDF coordinates."""
x1: Any