Skip to content

Commit

Permalink
Code reformatted
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkauzh committed Feb 8, 2024
1 parent 1ce3575 commit 9d25fd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/fusionengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,6 @@
)

if platform.system().lower() == "linux":
warnings.filterwarnings("ignore", message="Pygame-ce seems to be running through X11 on top of wayland")
warnings.filterwarnings(
"ignore", message="Pygame-ce seems to be running through X11 on top of wayland"
)
1 change: 1 addition & 0 deletions tests/encode.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import base64
import fusionengine


def image_to_base64(image_path):
with open(image_path, "rb") as image_file:
encoded_image = base64.b64encode(image_file.read())
Expand Down

0 comments on commit 9d25fd2

Please sign in to comment.