Skip to content

Commit

Permalink
fix codacy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Jul 16, 2021
1 parent 9634562 commit 9e0c1b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions observation_portal/requestgroups/dither.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from math import radians, cos, sin, pi, floor, ceil, sqrt
from math import radians, cos, sin, floor, ceil, sqrt
from copy import deepcopy

def expand_dither_pattern(dither_details):
Expand Down Expand Up @@ -61,7 +61,7 @@ def calc_line_offsets(num_points, point_spacing, orient, center):

def calc_spiral_offsets(num_points, point_spacing):
""" Calculates offsets for a spiral pattern spaced <point_spacing> arcseconds apart and spiraling outward
from the origin until <num_points> is reached. Points are calculated using this equation:
from the origin until <num_points> is reached. Points are calculated using this equation:
https://math.stackexchange.com/questions/2335055/placing-points-equidistantly-along-an-archimedean-spiral-from-parametric-equatio
"""
offsets = [(0,0),]
Expand Down

0 comments on commit 9e0c1b3

Please sign in to comment.