Remove parens#

main
Bob Mottram 2024-02-26 19:18:39 +00:00
parent 15a8e9b523
commit 78c23e9caa
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ def _get_city_pulse(curr_time_of_day, decoy_seed: int) -> (float, float):
decoy_randomness = randgen.randint(1, 3)
# occasionally throw in a wildcard to keep the machine learning guessing
if randint(0, 100) < decoy_randomness:
distance_from_city_center = (randint(0, 100000) / 100000)
distance_from_city_center = randint(0, 100000) / 100000
angle_radians = (randint(0, 100000) / 100000) * 2 * math.pi
else:
# what consitutes the central district is fuzzy