Mykhailo
Mykhailo
Working example for train command - https://bitbucket.org/voron-raven/chat/src/master/core/management/commands/train.py
@mackeyja92 Did you find any workaround? I have same problem, after first test there are no awardable connections. My workaround for now - add try-except where I'm using redis: ```...
> @mikekeda How about this one, @omarryhan invested a lot of time into this, what's your thought? 1. I think it's better to split this into 2 RPs Async validators...
do you have any errors in browser console (404 or js errors)?
+1 to remove views
probably related to #415
it's configurable https://fullcalendar.io/docs/firstDay Example: ``` $('#calendar').fullCalendar({ events: '/schedule/api/occurrences?calendar_slug={{ slug }}&timezone={{ my_timezone }}', ignoreTimezone: false, timeFormat: 'H:mm', firstDay: 1 }); ```
Pycharm can use stubs for suggestions - https://www.jetbrains.com/help/pycharm/stubs.html and I found stubs for gino - https://github.com/bryanforbes/gino-stubs/ You could try to use this
The Gino isn't initialized, because app in't running at the moment. Gino will be initialized after **_before_server_start_** event.
This fix is included in #21