Skip to content

Commit

Permalink
snake_case-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
algobytewise authored and mertcandav committed Feb 23, 2021
1 parent 4c6b92f commit 7bf1d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphics/mandelbrot.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from PIL import Image # type: ignore


def getDistance(x: float, y: float, max_step: int) -> float:
def get_distance(x: float, y: float, max_step: int) -> float:
"""
Return the relative distance (= step/max_step) after which the complex number
constituted by this x-y-pair diverges. Members of the Mandelbrot set do not
Expand Down

0 comments on commit 7bf1d62

Please sign in to comment.