-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved
Properties
into a new module (part of #12);
- Loading branch information
1 parent
7a203f5
commit f08de99
Showing
8 changed files
with
43 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from . import adjustments, errors, motion_tree, properties, qualms | ||
from ._file_objects import create_image_reference, FileReference, ImageFileReference, ImageReference, VisibilityStatus | ||
from ._file_objects import create_image_reference, FileReference, ImageFileReference, ImageReference | ||
from ._version import __version__, __version_tuple__ | ||
from ._video_crafting import compile_video | ||
from .metadata import Metadata | ||
|
||
|
||
__all__ = [ | ||
"__version__", "__version_tuple__", "adjustments", "compile_video", "create_image_reference", "errors", | ||
"FileReference", "ImageFileReference", "ImageReference", "Metadata", "motion_tree", "properties", "qualms", | ||
"VisibilityStatus" | ||
"FileReference", "ImageFileReference", "ImageReference", "Metadata", "motion_tree", "properties", "qualms" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
from ._status import VisibilityStatus | ||
from .files import FileReference | ||
from .images import create_image_reference, ImageFileReference, ImageReference | ||
|
||
|
||
__all__ = ["create_image_reference", "FileReference", "ImageFileReference", "ImageReference", "VisibilityStatus"] | ||
__all__ = ["create_image_reference", "FileReference", "ImageFileReference", "ImageReference"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters