From 26337638fbc05c667d4557503c613a32115a7528 Mon Sep 17 00:00:00 2001 From: Bouhek Date: Thu, 1 Feb 2024 15:29:57 +0100 Subject: [PATCH] Fix lint --- svgpathtools/bezier.py | 1 + svgpathtools/constants.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/svgpathtools/bezier.py b/svgpathtools/bezier.py index 6b03602..32ca71f 100644 --- a/svgpathtools/bezier.py +++ b/svgpathtools/bezier.py @@ -12,6 +12,7 @@ from numpy import poly1d from .polytools import real, imag, polyroots, polyroots01 from .constants import FLOAT_EPSILON + # Evaluation ################################################################## def n_choose_k(n, k): diff --git a/svgpathtools/constants.py b/svgpathtools/constants.py index 426fc22..4a623e3 100644 --- a/svgpathtools/constants.py +++ b/svgpathtools/constants.py @@ -1,3 +1,3 @@ """This submodule contains constants used throughout the project.""" -FLOAT_EPSILON = 1e-12 \ No newline at end of file +FLOAT_EPSILON = 1e-12