Skip to content

Commit

Permalink
Fix up flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
flacjacket committed May 15, 2021
1 parent ad956bf commit 6e0f14f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pywayland/protocol_core/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import Callable, Type, Optional, TYPE_CHECKING
from typing import Callable, Type, Optional
from weakref import WeakKeyDictionary, WeakValueDictionary

from pywayland import ffi
Expand Down
2 changes: 1 addition & 1 deletion pywayland/server/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import functools
import logging
from typing import Any, Optional, Tuple, TYPE_CHECKING
from typing import Any, Optional, Tuple

from pywayland import ffi, lib
from pywayland.utils import ensure_valid
Expand Down
2 changes: 1 addition & 1 deletion pywayland/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import os
from functools import wraps
from typing import Iterator, TYPE_CHECKING
from typing import Iterator

from . import ffi, lib

Expand Down

0 comments on commit 6e0f14f

Please sign in to comment.