Skip to content

Commit e6a2895

Browse files
Whoops, I'm on 1.5, not 1.4
1 parent 97de8c6 commit e6a2895

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fpclib/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@ def __getattr__(self, name):
15381538
def set_meta(self, **kwargs):
15391539
"""Set the metadata with :code:`kwargs`. This method does not do error checking.
15401540
1541-
:since 1.4: You can also just set the metadata directly through the curation instead; e.g., :code:`curation.title = 'Title Goes Here'`
1541+
:since 1.5: You can also just set the metadata directly through the curation instead; e.g., :code:`curation.title = 'Title Goes Here'`
15421542
15431543
:param ** kwargs: A list of arguments to set the metadata with. To see what you can use for :code:`kwargs`, see :attr:`Curation.ARGS`. Any value passed in that is not in :attr:`Curation.ARGS` will still be stored and can be retrieved through :func:`Curation.get_meta()`.
15441544
@@ -1557,7 +1557,7 @@ def set_meta(self, **kwargs):
15571557
def get_meta(self, key):
15581558
"""Get the metadata/args referenced by :code:`key`.
15591559
1560-
:since 1.4: You can also just get the metadata directly through the curation instead; e.g., :code:`myVar = curation.title`
1560+
:since 1.5: You can also just get the metadata directly through the curation instead; e.g., :code:`myVar = curation.title`
15611561
15621562
:param str key: The name of an argument to get the value of. You can either use the keys referenced by :attr:`Curation.ARGS` or the name of the argument you passed in through :func:`Curation.set_meta()`.
15631563

0 commit comments

Comments
 (0)