Skip to content

Commit

Permalink
docs: fix api build (langchain-ai#17898)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan authored and al1p-R committed Feb 27, 2024
1 parent 9f06aaa commit 5b563a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api_reference/create_api_rst.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ def main() -> None:
# Skip any hidden directories
# Some of these could be present by mistake in the code base
# e.g., .pytest_cache from running tests from the wrong location.
if not dir.startswith("."):
if dir.startswith("."):
print("Skipping dir:", dir)
continue

Expand Down

0 comments on commit 5b563a9

Please sign in to comment.