mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 09:21:13 +08:00
isort --profile black . (#2181)
* updating DIRECTORY.md * isort --profile black . * Black after * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -6,9 +6,10 @@ flake8 : passed
|
||||
mypy : passed
|
||||
"""
|
||||
|
||||
from numpy import array, cos, sin, radians, cross # type: ignore
|
||||
from typing import List
|
||||
|
||||
from numpy import array, cos, cross, radians, sin # type: ignore
|
||||
|
||||
|
||||
def polar_force(
|
||||
magnitude: float, angle: float, radian_mode: bool = False
|
||||
|
@ -2,9 +2,9 @@
|
||||
# Author: Syed Haseeb Shah (github.com/QuantumNovice)
|
||||
# The Newton-Raphson method (also known as Newton's method) is a way to
|
||||
# quickly find a good approximation for the root of a real-valued function
|
||||
|
||||
from decimal import Decimal
|
||||
from math import * # noqa: F401, F403
|
||||
|
||||
from sympy import diff
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user