Skip to content

Commit 0be976e

Browse files
committed
Fix indentation
1 parent 6c55685 commit 0be976e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python-bytes-to-strings/decode_bytes1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
url = "https://example.com/"
44

55
with urlopen(url) as response:
6-
raw_bytes: bytes = response.read()
6+
raw_bytes: bytes = response.read()
77

88
print(f"Bytes: {raw_bytes[:100]}\n")

python-bytes-to-strings/decode_bytes2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
url = "https://example.com/"
44

55
with urlopen(url) as response:
6-
raw_bytes: bytes = response.read()
6+
raw_bytes: bytes = response.read()
77

88
print(f"Bytes: {raw_bytes[:100]}\n")
99

0 commit comments

Comments
 (0)