From b7a79bcbcbde2b950cb1095641b0b400588d5260 Mon Sep 17 00:00:00 2001 From: DuncDennis <90915296+DuncDennis@users.noreply.github.com> Date: Sun, 12 Mar 2023 16:47:31 +0100 Subject: [PATCH] Removed testing function. --- src/lorenzpy/simulations.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/lorenzpy/simulations.py b/src/lorenzpy/simulations.py index 33aaf7a..db0ba4f 100644 --- a/src/lorenzpy/simulations.py +++ b/src/lorenzpy/simulations.py @@ -194,20 +194,3 @@ def flow(self, x: np.ndarray) -> np.ndarray: x[0] * x[1] - self.beta * x[2], ] ) - - -def double_num(x: float) -> float: - """Double a number. - - Examples: - >>> double_num(3) - 6 - - - Args: - x: Input number to be doubled. - - Returns: - Double of x. - """ - return 2 * x