Skip to content

Commit

Permalink
MNT typos
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Dec 17, 2024
1 parent 06e0d9e commit 2a19276
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions apsbss/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def to_dict(self) -> dict:
return dict(self._raw)

@property
def _users(self) -> object:
def _users(self) -> list:
"""Return a list of all users, as 'User' objects."""
return [User(u) for u in self._raw["experimentUsers"]]

Expand Down Expand Up @@ -504,7 +504,7 @@ def to_dict(self) -> dict:
return dict(self._raw)

@property
def _users(self) -> object:
def _users(self) -> list:
"""Return a list of all users, as 'User' objects."""
return [User(u) for u in self._raw["experimenters"]]

Expand Down
30 changes: 15 additions & 15 deletions docs/source/apsbss.rst
Original file line number Diff line number Diff line change
Expand Up @@ -280,21 +280,21 @@ Such as:
.. code-block:: bash
$ apsbss now 19-ID-D
Proposal(s): beam line 19-ID-D, 2024-12-17 12:08:19.891573-06:00
== === ===== === ======= =====
id run start end user(s) title
== === ===== === ======= =====
== === ===== === ======= =====

ESAF(s): sector 19, 2024-12-17 12:08:19.891573-06:00
====== ======== ====== ========== ========== ==================== ========================================
id status run start end user(s) title
====== ======== ====== ========== ========== ==================== ========================================
276922 Approved 2024-3 2024-11-22 2024-12-19 Wieghold,Mercado ... 19-ID-A,C,D Technical Commissioning
276575 Approved 2024-3 2024-10-31 2024-12-19 Wieghold,Lai,Luo,... 19-ID-C,D,E Operations Commissioning
276558 Approved 2024-3 2024-10-25 2024-12-19 Lai,Guerrero,Luo,... 19-ID-A Temporary Technical Commissio...
275933 Approved 2024-3 2024-10-24 2024-12-19 Wieghold,Luo,Mase... 19-ID-A Operations Commissioning
====== ======== ====== ========== ========== ==================== ========================================
Proposal(s): beam line 19-ID-D, 2024-12-17 12:08:19.891573-06:00
== === ===== === ======= =====
id run start end user(s) title
== === ===== === ======= =====
== === ===== === ======= =====
ESAF(s): sector 19, 2024-12-17 12:08:19.891573-06:00
====== ======== ====== ========== ========== ==================== ========================================
id status run start end user(s) title
====== ======== ====== ========== ========== ==================== ========================================
276922 Approved 2024-3 2024-11-22 2024-12-19 Wieghold,Mercado ... 19-ID-A,C,D Technical Commissioning
276575 Approved 2024-3 2024-10-31 2024-12-19 Wieghold,Lai,Luo,... 19-ID-C,D,E Operations Commissioning
276558 Approved 2024-3 2024-10-25 2024-12-19 Lai,Guerrero,Luo,... 19-ID-A Temporary Technical Commissio...
275933 Approved 2024-3 2024-10-24 2024-12-19 Wieghold,Luo,Mase... 19-ID-A Operations Commissioning
====== ======== ====== ========== ========== ==================== ========================================
To get details on a specific proposal or ESAF, see the subcommand for each.

Expand Down

0 comments on commit 2a19276

Please sign in to comment.