Skip to content

Commit 8f95df6

Browse files
committed
MNT: pylint
1 parent dc12d23 commit 8f95df6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

rocketpy/simulation/flight.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2869,31 +2869,31 @@ def time_iterator(self, node_list):
28692869
i += 1
28702870

28712871
@staticmethod
2872-
def FlightPhases(*_, **_): # pylint: disable=invalid-name
2872+
def FlightPhases(*_args, **_kwargs): # pylint: disable=invalid-name
28732873
warnings.warn(
28742874
"FlightPhases is deprecated and will be removed in v1.13. "
28752875
"Use _FlightPhases class directly.",
28762876
DeprecationWarning,
28772877
)
28782878

28792879
@staticmethod
2880-
def FlightPhase(*_, **_): # pylint: disable=invalid-name
2880+
def FlightPhase(*_args, **_kwargs): # pylint: disable=invalid-name
28812881
warnings.warn(
28822882
"FlightPhase is deprecated and will be removed in v1.13. "
28832883
"Use the _FlightPhase class directly.",
28842884
DeprecationWarning,
28852885
)
28862886

28872887
@staticmethod
2888-
def TimeNodes(*_, **_): # pylint: disable=invalid-name
2888+
def TimeNodes(*_args, **_kwargs): # pylint: disable=invalid-name
28892889
warnings.warn(
28902890
"TimeNodes is deprecated and will be removed in v1.13. "
28912891
"Use _TimeNodes class directly.",
28922892
DeprecationWarning,
28932893
)
28942894

28952895
@staticmethod
2896-
def TimeNode(*_, **_): # pylint: disable=invalid-name
2896+
def TimeNode(*_args, **_kwargs): # pylint: disable=invalid-name
28972897
warnings.warn(
28982898
"TimeNode is deprecated and will be removed in v1.13. "
28992899
"Use the _TimeNode class directly.",

0 commit comments

Comments
 (0)