Skip to content

Commit 923ec00

Browse files
committed
Fix indentation
1 parent 6a48b83 commit 923ec00

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

for_now/index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ <h1 class="font-serif font-bold text-cloudbank text-3xl">
9595
>GitHub org</a
9696
>.
9797
</p>
98+
<p class="block rounded-lg bg-light-cloudbank text-lightest-wash p-4">
99+
<strong class="!text-white">T-strings sprint</strong> @ PyCon!<br />
100+
Monday, May 19, Room 309, 9AM
101+
</p>
98102
<p>Visit again soon for <i>much</i> more.</p>
99103
<p>Please say hello! The <strong>t-strings team</strong> is:</p>
100104
<ul class="text-sm font-sans list-disc list-inside team space-y-1 mx-4">

for_now/introduction.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ <h1 class="font-serif font-bold text-cloudbank text-3xl">
187187
<pre><code class="language-python">from some_db_library import execute
188188

189189
def get_student(name: str):
190-
return execute(
191-
f"SELECT * FROM students WHERE name = '{name}'"
192-
)
190+
return execute(
191+
f"SELECT * FROM students WHERE name = '{name}'"
192+
)
193193

194194
get_student("Robert'); DROP TABLE students;--") # ☠️ ☠️ ☠️
195195
</code></pre>
@@ -204,9 +204,9 @@ <h1 class="font-serif font-bold text-cloudbank text-3xl">
204204
<pre><code class="language-python">from some_db_library import execute_t
205205

206206
def get_student(name: str):
207-
return execute_t(
208-
t"SELECT * FROM students WHERE name = '{name}'"
209-
)
207+
return execute_t(
208+
t"SELECT * FROM students WHERE name = '{name}'"
209+
)
210210

211211
get_student("Robert'); DROP TABLE students;--") # 🎉 🦄 👍
212212
</code></pre>

0 commit comments

Comments
 (0)