Format everything with black
Follow the readme's instruction haha
This commit is contained in:
@ -2,8 +2,8 @@
|
||||
|
||||
from base64 import b64encode
|
||||
|
||||
with open('404.png', 'rb') as png, open('404.base64', 'wb') as base64:
|
||||
with open("404.png", "rb") as png, open("404.base64", "wb") as base64:
|
||||
base64.write(b64encode(png.read()))
|
||||
|
||||
with open('loading.png', 'rb') as png, open('loading.base64', 'wb') as base64:
|
||||
with open("loading.png", "rb") as png, open("loading.base64", "wb") as base64:
|
||||
base64.write(b64encode(png.read()))
|
||||
|
||||
Reference in New Issue
Block a user