Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions arithmetic_analysis/newton_raphson.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# quickly find a good approximation for the root of a real-valued function
from __future__ import annotations

from ast import literal_eval as eval # noqa: A001
from decimal import Decimal
from math import * # noqa: F403

Expand Down