Skip to content

Commit

Permalink
Merge pull request #6 from andrewkaufman/imports
Browse files Browse the repository at this point in the history
Added missing imports
  • Loading branch information
andrewkaufman authored Dec 20, 2018
2 parents cb315a1 + 3b79224 commit 9831868
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/AtomsGaffer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
#
##########################################################################

__import__( "Gaffer" )
__import__( "GafferScene" )

from _AtomsGaffer import *

__import__( "IECore" ).loadConfig( "GAFFER_STARTUP_PATHS", subdirectory = "AtomsGaffer" )
7 changes: 7 additions & 0 deletions python/AtomsGafferUI/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@
#
##########################################################################

__import__( "Gaffer" )
__import__( "GafferUI" )
__import__( "GafferScene" )
__import__( "GafferSceneUI" )

__import__( "AtomsGaffer" )

import DocumentationAlgo

import AtomsCrowdReaderUI
Expand Down

0 comments on commit 9831868

Please sign in to comment.