Skip to content

Commit 8a2883d

Browse files
MateusStanoCopilot
andauthored
ENH: copilot suggestion
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 252d392 commit 8a2883d

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

rocketpy/rocket/rocket.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2339,11 +2339,7 @@ def _is_numeric(value):
23392339
float(value)
23402340
return True
23412341
except (TypeError, ValueError):
2342-
try:
2343-
int(value)
2344-
return True
2345-
except (TypeError, ValueError):
2346-
return False
2342+
return False
23472343

23482344
# Read only the first row initially to decide which parsing mode to use.
23492345
try:

0 commit comments

Comments
 (0)