You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following use case and I am wondering if it can perhaps already be achieved? I have taken a look at the source and not sure that it can be! Maybe what I want to do is crazy!?
The particular api is supposed to respond with data for only a single day specified by date - however sometimes data from days either side leak in - I would like to check that a column of df is unique and that all its values are date. However I don't know date until the function is called.
Could it be possible for a check decorator to pass in the decorated functions args in some way so this could be possible?
The text was updated successfully, but these errors were encountered:
This question has come up before, and I'm open to a solution if you have one. It's challenging because check argument names and the argument names in the user's function might collide, but be used for different purposes, so kwargs can't just be synced by name
@ZaxR Thanks for the response! I did initially think it could just be as simple as passing the kwargs/args into the check function - but you are correct not clear how to deal with clashes...
Hi great project thanks very much!
I have the following use case and I am wondering if it can perhaps already be achieved? I have taken a look at the source and not sure that it can be! Maybe what I want to do is crazy!?
I have some function;
The particular api is supposed to respond with data for only a single day specified by
date
- however sometimes data from days either side leak in - I would like to check that a column ofdf
is unique and that all its values aredate
. However I don't knowdate
until the function is called.Could it be possible for a check decorator to pass in the decorated functions args in some way so this could be possible?
The text was updated successfully, but these errors were encountered: