Skip to content

Commit

Permalink
end in itself
Browse files Browse the repository at this point in the history
  • Loading branch information
emolch committed Mar 23, 2023
1 parent e19d87a commit 81757ae
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions kite/sources/__init__.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
from .compound_sources import (
CompoundModelProcessor,
EllipsoidSource,
PointCompoundSource,
CompoundModelProcessor,
) # noqa
from .okada import OkadaSource, DislocProcessor # noqa
from .pyrocko_gf import (
PyrockoMomentTensor,
PyrockoRectangularSource,
PyrockoProcessor,
) # noqa
)
from .okada import DislocProcessor, OkadaSource
from .pyrocko_gf import PyrockoMomentTensor, PyrockoProcessor, PyrockoRectangularSource

__sources__ = [
OkadaSource,
PyrockoMomentTensor,
PyrockoRectangularSource, # noqa
PyrockoRectangularSource,
EllipsoidSource,
PointCompoundSource,
] # noqa
]

__processors__ = [
CompoundModelProcessor,
PyrockoProcessor,
DislocProcessor,
]

0 comments on commit 81757ae

Please sign in to comment.