Skip to content

Commit

Permalink
Merge pull request #330 from drahc1R/follow-up-pr
Browse files Browse the repository at this point in the history
fixed docstrings for datetime generator
  • Loading branch information
taylorfturner authored Aug 9, 2023
2 parents 0cc79fa + 27d4e0e commit 194539a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions synthetic_data/distinct_generators/datetime_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ def random_datetimes(
:param format: the format that the generated datatime will follow,
defaults to None
:type format: str, None, optional
:param start_date: the earliest date that datetimes can be generated at,
:param min: the earliest date that datetimes can be generated at,
defaults to pd.Timestamp(1920, 1, 1)
:type start_date: pd.Timestamp, None, optional
:param end_date: the latest date that datetimes can be generated at,
:type min: pd.Timestamp, None, optional
:param max: the latest date that datetimes can be generated at,
defaults to pd.Timestamp(2049, 12, 31)
:type end_date: pd.Timestamp, None, optional
:type max: pd.Timestamp, None, optional
:return: array of generated datetimes
:rtype: numpy array
Expand Down

0 comments on commit 194539a

Please sign in to comment.