Skip to content

Commit

Permalink
Fix import ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
TomCasavant committed May 5, 2024
1 parent d6e4dd8 commit 9d55680
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
8 changes: 5 additions & 3 deletions bot.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from gb import Gameboy
import os
import random
import time
from mastodon import Mastodon

import toml
import os
from mastodon import Mastodon

from gb import Gameboy


class Bot:
Expand Down
11 changes: 6 additions & 5 deletions gb.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from pyboy import PyBoy, WindowEvent
import random
import threading
import os
import random
import re
import shutil
from PIL import Image, ImageDraw
from moviepy.editor import ImageSequenceClip
import threading

import numpy as np
from moviepy.editor import ImageSequenceClip
from PIL import Image, ImageDraw
from pyboy import PyBoy, WindowEvent


class Gameboy:
Expand Down

0 comments on commit 9d55680

Please sign in to comment.