Skip to content
This repository has been archived by the owner on Mar 9, 2024. It is now read-only.

Commit

Permalink
refactor(mixin): move mixin to _mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
daveenguyen committed Mar 27, 2019
1 parent 43a4346 commit 4066d3b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion atomacos/AXClasses.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from collections import deque

from atomacos import _a11y
from atomacos.mixin import KeyboardMouseMixin, SearchMethodsMixin, WaitForMixin
from atomacos._mixin import KeyboardMouseMixin, SearchMethodsMixin, WaitForMixin


class NativeUIElement(
Expand Down
4 changes: 4 additions & 0 deletions atomacos/_mixin/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# flake8: noqa: F401
from atomacos._mixin._input import KeyboardMouseMixin
from atomacos._mixin._search import SearchMethodsMixin
from atomacos._mixin._wait import WaitForMixin
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 0 additions & 4 deletions atomacos/mixin/__init__.py

This file was deleted.

0 comments on commit 4066d3b

Please sign in to comment.