]> git.cworth.org Git - turbot-web/commitdiff
Delete trailing whitespace
authorCarl Worth <cworth@cworth.org>
Wed, 12 Jan 2022 07:56:07 +0000 (23:56 -0800)
committerCarl Worth <cworth@cworth.org>
Wed, 12 Jan 2022 07:56:07 +0000 (23:56 -0800)
Just to keep my editor happy.

html_generator.py

index 7d18e0a5738a111e9bd4acda97cccbb88d7d8338..9b1b1147bb966012b97aeef4331aefb0899fa27a 100644 (file)
@@ -5,7 +5,7 @@ Created on Thu Jan  6 23:35:23 2022
 @author: Avram Gottschlich
 """
 """
 @author: Avram Gottschlich
 """
 """
-I copied several functions from your code; 
+I copied several functions from your code;
 if it's easier to refer to them rather than copying them that's absolutely fine
 
 This rewrites the html each time it is called
 if it's easier to refer to them rather than copying them that's absolutely fine
 
 This rewrites the html each time it is called
@@ -61,14 +61,14 @@ def link(lin, text):
 
 def hunt_info(turb, hunt):
     """
 
 def hunt_info(turb, hunt):
     """
-    Retrieves list of rounds, puzzles for the given hunt    
+    Retrieves list of rounds, puzzles for the given hunt
     """
     name = hunt["name"]
     hunt_id = hunt["hunt_id"]
     channel_id = hunt["channel_id"]
     """
     name = hunt["name"]
     hunt_id = hunt["hunt_id"]
     channel_id = hunt["channel_id"]
-    
+
     puzzles = hunt_puzzles_for_hunt_id(turb, hunt_id)
     puzzles = hunt_puzzles_for_hunt_id(turb, hunt_id)
-    
+
     rounds = set()
     for puzzle in puzzles:
         if "rounds" not in puzzle:
     rounds = set()
     for puzzle in puzzles:
         if "rounds" not in puzzle:
@@ -77,7 +77,7 @@ def hunt_info(turb, hunt):
             rounds.add(rnd)
     rounds = list(rounds)
     rounds.sort()
             rounds.add(rnd)
     rounds = list(rounds)
     rounds.sort()
-    
+
     return puzzles, rounds
 
 def round_stat(rnd, puzzles):
     return puzzles, rounds
 
 def round_stat(rnd, puzzles):
@@ -90,7 +90,7 @@ def round_stat(rnd, puzzles):
     meta_solved = 0
     for puzzle in puzzles:
         if "rounds" not in puzzle:
     meta_solved = 0
     for puzzle in puzzles:
         if "rounds" not in puzzle:
-            continue        
+            continue
         if rnd in puzzle["rounds"]:
             if puzzle['type'] == 'meta':
                 metas.append(puzzle)
         if rnd in puzzle["rounds"]:
             if puzzle['type'] == 'meta':
                 metas.append(puzzle)
@@ -107,9 +107,9 @@ def round_stat(rnd, puzzles):
     unsolved_puzzles = sorted(unsolved_puzzles, key = lambda i: i['name'])
     rnd_puzzles = metas + unsolved_puzzles + solved_puzzles
     return puzzle_count, solved_count, rnd_puzzles, meta_solved, len(metas)
     unsolved_puzzles = sorted(unsolved_puzzles, key = lambda i: i['name'])
     rnd_puzzles = metas + unsolved_puzzles + solved_puzzles
     return puzzle_count, solved_count, rnd_puzzles, meta_solved, len(metas)
-            
-   
-    
+
+
+
 def overview(puzzles, rounds):
     #big board, main page. saves as index.html
     start = ['<!DOCTYPE html>\n',
 def overview(puzzles, rounds):
     #big board, main page. saves as index.html
     start = ['<!DOCTYPE html>\n',
@@ -155,7 +155,7 @@ def overview(puzzles, rounds):
         '      <p>Puzzles: {}/{}</p>\n'.format(solved_count, puzzle_count),
         '      <p>Metas: {}/{}</p>\n'.format(meta_solved, metas),
         '    </div>\n']
         '      <p>Puzzles: {}/{}</p>\n'.format(solved_count, puzzle_count),
         '      <p>Metas: {}/{}</p>\n'.format(meta_solved, metas),
         '    </div>\n']
-        
+
         expanding += [
         '  <div id="b{}" class="containerTab {}" style="display:none;">\n'.format(i, status),
         '    <span onclick="this.parentElement.style.display=\'none\'" class="closebtn">x</span>\n',
         expanding += [
         '  <div id="b{}" class="containerTab {}" style="display:none;">\n'.format(i, status),
         '    <span onclick="this.parentElement.style.display=\'none\'" class="closebtn">x</span>\n',
@@ -234,7 +234,7 @@ def round_overview(rnd, puzzles):
         else:
             meta = ''
         slack_url = channel_url(puzzle['channel_id'])
         else:
             meta = ''
         slack_url = channel_url(puzzle['channel_id'])
-        
+
         if puzzle['status'] == 'solved':
             puzzle_list += [ '                    <tr>\n',
              '                        <td>{}</td>\n'.format(elink(slack_url, puzzle['name']+meta)),
         if puzzle['status'] == 'solved':
             puzzle_list += [ '                    <tr>\n',
              '                        <td>{}</td>\n'.format(elink(slack_url, puzzle['name']+meta)),
@@ -371,7 +371,7 @@ def puzzle_lists(puzzles, filt):
         slack_url = channel_url(puzzle['channel_id'])
         round_url = link(website + "_".join(rnd.split()) + "_round.html", puzzle['rounds'][0])
         #assuming one round per puzzle for now
         slack_url = channel_url(puzzle['channel_id'])
         round_url = link(website + "_".join(rnd.split()) + "_round.html", puzzle['rounds'][0])
         #assuming one round per puzzle for now
-        
+
         solved_code += ['                    <tr>\n',
          '                        <td>{}</td>\n'.format(elink(slack_url, puzzle['name']+meta)),
          '                        <td>{}</td>\n'.format(elink(puzzle['url'], 'Puzzle')),
         solved_code += ['                    <tr>\n',
          '                        <td>{}</td>\n'.format(elink(slack_url, puzzle['name']+meta)),
          '                        <td>{}</td>\n'.format(elink(puzzle['url'], 'Puzzle')),
@@ -389,7 +389,7 @@ def puzzle_lists(puzzles, filt):
         slack_url = channel_url(puzzle['channel_id'])
         round_url = link(website + "_".join(rnd.split()) + "_round.html", puzzle['rounds'][0])
         #assuming one round per puzzle for now
         slack_url = channel_url(puzzle['channel_id'])
         round_url = link(website + "_".join(rnd.split()) + "_round.html", puzzle['rounds'][0])
         #assuming one round per puzzle for now
-        
+
         unsolved_code += ['                    <tr>\n',
          '                        <td>{}</td>\n'.format(elink(slack_url, puzzle['name']+meta)),
          '                        <td>{}</td>\n'.format(elink(puzzle['url'], 'Puzzle')),
         unsolved_code += ['                    <tr>\n',
          '                        <td>{}</td>\n'.format(elink(slack_url, puzzle['name']+meta)),
          '                        <td>{}</td>\n'.format(elink(puzzle['url'], 'Puzzle')),