Skip to content

Commit

Permalink
docs: ✍️ Add clarifying comments to examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
teald committed Aug 19, 2024
1 parent 73f64dc commit 0082105
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions astrodata/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class TagSet(namedtuple("TagSet", "add remove blocked_by blocks if_present")):
)
>>> TagSet({'BIAS', 'CAL'}) # doctest: +SKIP
TagSet(
add={'BIAS', 'CAL'},
add={'BIAS', 'CAL'}, # These tags are added to the global set
remove=set(),
blocked_by=set(),
blocks=set(),
Expand All @@ -151,7 +151,7 @@ class TagSet(namedtuple("TagSet", "add remove blocked_by blocks if_present")):
>>> TagSet(remove={'BIAS', 'CAL'}) # doctest: +SKIP
TagSet(
add=set(),
remove={'BIAS', 'CAL'},
remove={'BIAS', 'CAL'}, # These tags are removed from the global set
blocked_by=set(),
blocks=set(),
if_present=set()
Expand Down

0 comments on commit 0082105

Please sign in to comment.