Skip to content
This repository was archived by the owner on Dec 8, 2024. It is now read-only.

Commit 9d25fd2

Browse files
committed
Code reformatted
1 parent 1ce3575 commit 9d25fd2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/fusionengine/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,6 @@
6868
)
6969

7070
if platform.system().lower() == "linux":
71-
warnings.filterwarnings("ignore", message="Pygame-ce seems to be running through X11 on top of wayland")
71+
warnings.filterwarnings(
72+
"ignore", message="Pygame-ce seems to be running through X11 on top of wayland"
73+
)

tests/encode.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import base64
22
import fusionengine
33

4+
45
def image_to_base64(image_path):
56
with open(image_path, "rb") as image_file:
67
encoded_image = base64.b64encode(image_file.read())

0 commit comments

Comments
 (0)