Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 3 additions & 2 deletions doc/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

import docutils
import docutils.parsers.rst
import pandas

DOC_PATH = os.path.dirname(os.path.abspath(__file__))
SOURCE_PATH = os.path.join(DOC_PATH, "source")
Expand Down Expand Up @@ -83,11 +84,11 @@ def _process_single_doc(self, single_doc):
if os.path.exists(os.path.join(SOURCE_PATH, single_doc)):
return single_doc
else:
raise FileNotFoundError(f"File {single_doc} not found")
raise FileNotFoundError(f"File {single_doc} not f ound")

elif single_doc.startswith("pandas."):
try:
obj = pandas # noqa: F821
obj = pandas # noqa: F821
for name in single_doc.split("."):
obj = getattr(obj, name)
except AttributeError as err:
Expand Down
350 changes: 0 additions & 350 deletions pandas/__init__.py

This file was deleted.

Loading
Loading