mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-19 17:55:11 -04:00
⚡ Organize imports
This commit is contained in:
parent
cb9c6aef2b
commit
0a04b77717
3 changed files with 7 additions and 6 deletions
|
@ -2,9 +2,9 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
import shutil
|
||||
from os import path, listdir, rename, remove
|
||||
from .config import ConfigProvider
|
||||
from os import listdir, path, remove, rename
|
||||
|
||||
from .config import ConfigProvider
|
||||
|
||||
# Windows Cursors Config
|
||||
windows_cursors = {
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import sys
|
||||
import json
|
||||
import shutil
|
||||
from os import path, mkdir
|
||||
import sys
|
||||
import tempfile
|
||||
from os import mkdir, path
|
||||
|
||||
from . import __path__
|
||||
from .pkg_info import info
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from clickgen import build_cursor_theme, build_win_cursor_theme, build_x11_cursor_theme
|
||||
|
||||
from .bundler import Bundler
|
||||
from .config import ConfigProvider, hotspots, sizes, delay
|
||||
from clickgen import build_x11_cursor_theme, build_cursor_theme, build_win_cursor_theme
|
||||
from .config import ConfigProvider, delay, hotspots, sizes
|
||||
|
||||
|
||||
class CursorBuilder:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue