Tom K
Tom K
``` class Testing1(models.Model): symbol = models.CharField('Ticker', max_length=32, primary_key=True) tf = models.CharField('timeframe', max_length=1) class Testing2(models.Model): symbol = models.ForeignKey(Testing1, on_delete=models.CASCADE) price = models.CharField('price', max_length=1) t = Testing1.objects.create(symbol='AAPL', tf='5') t Out[6]: Testing2.objects.create(symbol=t, price='1')...
As far as I can tell, 'timeframe_specs' is used as a dict (including your examples). Is there a time when it's used as a str? Does typing need to be...
### Bug Description Dataflow quits with asset error. ### Python version (`python -V`) 3.11 ### Bytewax version (pip list | grep bytewax) 0.20.1 ### Operating System version (`uname -morp`) Darwin...