Skip to content

Commit

Permalink
Fix: Specifying path should be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
klieret committed Apr 19, 2019
1 parent 2bdfe04 commit 900e6eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ankipandas/convenience_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@


def load_notes(
path,
path=None,
expand_fields=True
) -> pd.DataFrame:
"""
Load all ntoes as a pandas DataFrame.
Load all notes as a pandas DataFrame.
Args:
path: Path to database
Expand All @@ -39,7 +39,7 @@ def load_notes(


def load_cards(
path,
path=None,
merge_notes=True,
expand_fields=True
) -> pd.DataFrame:
Expand Down Expand Up @@ -70,7 +70,7 @@ def load_cards(


def load_revs(
path,
path=None,
merge_cards=True,
merge_notes=True,
expand_fields=True
Expand Down

0 comments on commit 900e6eb

Please sign in to comment.