Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
insolor committed Aug 18, 2023
1 parent d303e52 commit 64c406b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion async_tkinter_loop/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .async_tkinter_loop import async_mainloop, async_handler, get_event_loop
from .async_tkinter_loop import async_handler, async_mainloop, get_event_loop
4 changes: 2 additions & 2 deletions async_tkinter_loop/async_tkinter_loop.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import _tkinter
import asyncio
import tkinter
from functools import wraps
from tkinter import TclError
from typing import Any, Callable, Coroutine

from tkinter import TclError
import _tkinter


async def main_loop(root: tkinter.Tk) -> None:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_async_tk_loop.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import asyncio
from tkinter import Tk
from unittest.mock import Mock

import pytest
from tkinter import Tk

from async_tkinter_loop import async_handler, async_mainloop

Expand Down

0 comments on commit 64c406b

Please sign in to comment.