Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bpm errors #538

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/p/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Sub-packages

at.acceptance
at.collective
at.errors
at.lattice
at.load
at.matching
Expand Down
1 change: 1 addition & 0 deletions pyat/at/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from ._version import __version__, __version_tuple__
# Make all functions visible in the at namespace:
from .lattice import *
from .errors import *
from .tracking import *
from .physics import *
from .load import *
Expand Down
2 changes: 2 additions & 0 deletions pyat/at/errors/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"""Error handling"""
from .error_def import *
Loading