Skip to content

Commit

Permalink
MNT: remove unecessary varibale intialization
Browse files Browse the repository at this point in the history
  • Loading branch information
MateusStano committed Mar 30, 2024
1 parent d5d9c31 commit 7cd270b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions rocketpy/mathutils/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import matplotlib.pyplot as plt
import numpy as np
from scipy import integrate, linalg, optimize
from bisect import bisect_left

try:
from functools import cached_property
Expand Down Expand Up @@ -120,11 +119,6 @@ def __init__(
(II) Fields in CSV files may be enclosed in double quotes. If fields
are not quoted, double quotes should not appear inside them.
"""
# initialize variables to avoid errors when being called by other methods
self.__polynomial_coefficients__ = None
self.__akima_coefficients__ = None
self.__spline_coefficients__ = None

# initialize parameters
self.source = source
self.__inputs__ = inputs
Expand Down

0 comments on commit 7cd270b

Please sign in to comment.