Skip to content

Commit

Permalink
chore(api): fix stacker breaking docs
Browse files Browse the repository at this point in the history
Needs to be explicitly filtered out of nitpicks
  • Loading branch information
sfoster1 committed Jan 21, 2025
1 parent 1ba7b0f commit 1cc68c9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions api/docs/v2/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,10 @@
("py:class", r".*protocol_api\.config.*"),
("py:class", r".*opentrons_shared_data.*"),
("py:class", r".*protocol_api._parameters.Parameters.*"),
("py:class", r".*RobotContext"), # shh it's a secret (for now)
("py:class", r'.*AbstractLabware|APIVersion|LabwareLike|LoadedCoreMap|ModuleTypes|NoneType|OffDeckType|ProtocolCore|WellCore'), # laundry list of not fully qualified things
("py:class", r".*RobotContext"), # shh it's a secret (for now)
("py:class", r".*FlexStackerContext"), # ssh it's a secret (for now)
(
"py:class",
r".*AbstractLabware|APIVersion|LabwareLike|LoadedCoreMap|ModuleTypes|NoneType|OffDeckType|ProtocolCore|WellCore",
), # laundry list of not fully qualified things
]

0 comments on commit 1cc68c9

Please sign in to comment.