Skip to content

Commit e7a1270

Browse files
authored
Fixed minor typos with """"
1 parent 16f408a commit e7a1270

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

httpbin/core.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ def view_patch():
467467

468468
@app.route("/delete", methods=("DELETE",))
469469
def view_delete():
470-
""""The request's DELETE parameters.
470+
"""The request's DELETE parameters.
471471
---
472472
tags:
473473
- HTTP Methods
@@ -503,7 +503,7 @@ def view_gzip_encoded_content():
503503
@app.route("/deflate")
504504
@filters.deflate
505505
def view_deflate_encoded_content():
506-
""""Returns Deflate-encoded data.
506+
"""Returns Deflate-encoded data.
507507
---
508508
tags:
509509
- Response formats
@@ -520,7 +520,7 @@ def view_deflate_encoded_content():
520520
@app.route("/brotli")
521521
@filters.brotli
522522
def view_brotli_encoded_content():
523-
""""Returns Brotli-encoded data.
523+
"""Returns Brotli-encoded data.
524524
---
525525
tags:
526526
- Response formats
@@ -971,7 +971,7 @@ def basic_auth(user="user", passwd="passwd"):
971971

972972
@app.route("/hidden-basic-auth/<user>/<passwd>")
973973
def hidden_basic_auth(user="user", passwd="passwd"):
974-
""""Prompts the user for authorization using HTTP Basic Auth.
974+
"""Prompts the user for authorization using HTTP Basic Auth.
975975
---
976976
tags:
977977
- Auth
@@ -998,7 +998,7 @@ def hidden_basic_auth(user="user", passwd="passwd"):
998998

999999
@app.route("/bearer")
10001000
def bearer_auth():
1001-
""""Prompts the user for authorization using bearer authentication..
1001+
"""Prompts the user for authorization using bearer authentication..
10021002
---
10031003
tags:
10041004
- Auth
@@ -1029,7 +1029,7 @@ def bearer_auth():
10291029

10301030
@app.route("/digest-auth/<qop>/<user>/<passwd>")
10311031
def digest_auth_md5(qop=None, user="user", passwd="passwd"):
1032-
""""Prompts the user for authorization using Digest Auth.
1032+
"""Prompts the user for authorization using Digest Auth.
10331033
---
10341034
tags:
10351035
- Auth
@@ -1057,7 +1057,7 @@ def digest_auth_md5(qop=None, user="user", passwd="passwd"):
10571057

10581058
@app.route("/digest-auth/<qop>/<user>/<passwd>/<algorithm>")
10591059
def digest_auth_nostale(qop=None, user="user", passwd="passwd", algorithm="MD5"):
1060-
""""Prompts the user for authorization using Digest Auth + Algorithm.
1060+
"""Prompts the user for authorization using Digest Auth + Algorithm.
10611061
---
10621062
tags:
10631063
- Auth
@@ -1092,7 +1092,7 @@ def digest_auth_nostale(qop=None, user="user", passwd="passwd", algorithm="MD5")
10921092
def digest_auth(
10931093
qop=None, user="user", passwd="passwd", algorithm="MD5", stale_after="never"
10941094
):
1095-
""""Prompts the user for authorization using Digest Auth + Algorithm.
1095+
"""Prompts the user for authorization using Digest Auth + Algorithm.
10961096
allow settings the stale_after argument.
10971097
---
10981098
tags:
@@ -1194,7 +1194,7 @@ def digest_auth(
11941194

11951195
@app.route("/delay/<delay>", methods=["GET", "POST", "PUT", "DELETE", "PATCH", "TRACE"])
11961196
def delay_response(delay):
1197-
""""Returns a delayed response (max of 10 seconds).
1197+
"""Returns a delayed response (max of 10 seconds).
11981198
---
11991199
tags:
12001200
- Dynamic data
@@ -1289,7 +1289,7 @@ def generate_bytes():
12891289

12901290
@app.route("/base64/<value>")
12911291
def decode_base64(value):
1292-
""""Decodes base64url-encoded string.
1292+
"""Decodes base64url-encoded string.
12931293
---
12941294
tags:
12951295
- Dynamic data

0 commit comments

Comments
 (0)