File tree Expand file tree Collapse file tree 10 files changed +49
-49
lines changed
ch4_final_video_collector/infrastructure
ch4_starter_video_collector/infrastructure
ch5_final_video_collector/infrastructure
ch5_starter_video_collector/infrastructure
ch6_final_video_collector/infrastructure
ch6_starter_video_collector/infrastructure
ch7_final_video_collector
ch7_starter_video_collector/infrastructure
starter_video_collector/infrastructure Expand file tree Collapse file tree 10 files changed +49
-49
lines changed Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ def __getattr__(self, key):
1414def create (default_val = None , ** route_args ) -> RequestDictionary :
1515 request = flask .request
1616
17- # Adding this retro actively . Some folks are experiencing issues where they
17+ # Adding this retroactively . Some folks are experiencing issues where they
1818 # are getting a list rather than plain dict. I think it's from multiple
1919 # entries in the multidict. This should fix it.
2020 args = request .args
21- if isinstance (request . args , MultiDict ):
22- args = request . args .to_dict ()
21+ if isinstance (args , MultiDict ):
22+ args = args .to_dict ()
2323
2424 form = request .form
25- if isinstance (request . args , MultiDict ):
26- form = request . form .to_dict ()
25+ if isinstance (form , MultiDict ):
26+ form = form .to_dict ()
2727
2828 data = {
2929 ** args , # The key/value pairs in the URL query string
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ def __getattr__(self, key):
1414def create (default_val = None , ** route_args ) -> RequestDictionary :
1515 request = flask .request
1616
17- # Adding this retro actively . Some folks are experiencing issues where they
17+ # Adding this retroactively . Some folks are experiencing issues where they
1818 # are getting a list rather than plain dict. I think it's from multiple
1919 # entries in the multidict. This should fix it.
2020 args = request .args
21- if isinstance (request . args , MultiDict ):
22- args = request . args .to_dict ()
21+ if isinstance (args , MultiDict ):
22+ args = args .to_dict ()
2323
2424 form = request .form
25- if isinstance (request . args , MultiDict ):
26- form = request . form .to_dict ()
25+ if isinstance (form , MultiDict ):
26+ form = form .to_dict ()
2727
2828 data = {
2929 ** args , # The key/value pairs in the URL query string
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ def __getattr__(self, key):
1414def create (default_val = None , ** route_args ) -> RequestDictionary :
1515 request = flask .request
1616
17- # Adding this retro actively . Some folks are experiencing issues where they
17+ # Adding this retroactively . Some folks are experiencing issues where they
1818 # are getting a list rather than plain dict. I think it's from multiple
1919 # entries in the multidict. This should fix it.
2020 args = request .args
21- if isinstance (request . args , MultiDict ):
22- args = request . args .to_dict ()
21+ if isinstance (args , MultiDict ):
22+ args = args .to_dict ()
2323
2424 form = request .form
25- if isinstance (request . args , MultiDict ):
26- form = request . form .to_dict ()
25+ if isinstance (form , MultiDict ):
26+ form = form .to_dict ()
2727
2828 data = {
2929 ** args , # The key/value pairs in the URL query string
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ def __getattr__(self, key):
1414def create (default_val = None , ** route_args ) -> RequestDictionary :
1515 request = flask .request
1616
17- # Adding this retro actively . Some folks are experiencing issues where they
17+ # Adding this retroactively . Some folks are experiencing issues where they
1818 # are getting a list rather than plain dict. I think it's from multiple
1919 # entries in the multidict. This should fix it.
2020 args = request .args
21- if isinstance (request . args , MultiDict ):
22- args = request . args .to_dict ()
21+ if isinstance (args , MultiDict ):
22+ args = args .to_dict ()
2323
2424 form = request .form
25- if isinstance (request . args , MultiDict ):
26- form = request . form .to_dict ()
25+ if isinstance (form , MultiDict ):
26+ form = form .to_dict ()
2727
2828 data = {
2929 ** args , # The key/value pairs in the URL query string
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ def __getattr__(self, key):
1414def create (default_val = None , ** route_args ) -> RequestDictionary :
1515 request = flask .request
1616
17- # Adding this retro actively . Some folks are experiencing issues where they
17+ # Adding this retroactively . Some folks are experiencing issues where they
1818 # are getting a list rather than plain dict. I think it's from multiple
1919 # entries in the multidict. This should fix it.
2020 args = request .args
21- if isinstance (request . args , MultiDict ):
22- args = request . args .to_dict ()
21+ if isinstance (args , MultiDict ):
22+ args = args .to_dict ()
2323
2424 form = request .form
25- if isinstance (request . args , MultiDict ):
26- form = request . form .to_dict ()
25+ if isinstance (form , MultiDict ):
26+ form = form .to_dict ()
2727
2828 data = {
2929 ** args , # The key/value pairs in the URL query string
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ def __getattr__(self, key):
1414def create (default_val = None , ** route_args ) -> RequestDictionary :
1515 request = flask .request
1616
17- # Adding this retro actively . Some folks are experiencing issues where they
17+ # Adding this retroactively . Some folks are experiencing issues where they
1818 # are getting a list rather than plain dict. I think it's from multiple
1919 # entries in the multidict. This should fix it.
2020 args = request .args
21- if isinstance (request . args , MultiDict ):
22- args = request . args .to_dict ()
21+ if isinstance (args , MultiDict ):
22+ args = args .to_dict ()
2323
2424 form = request .form
25- if isinstance (request . args , MultiDict ):
26- form = request . form .to_dict ()
25+ if isinstance (form , MultiDict ):
26+ form = form .to_dict ()
2727
2828 data = {
2929 ** args , # The key/value pairs in the URL query string
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ def __getattr__(self, key):
1414def create (default_val = None , ** route_args ) -> RequestDictionary :
1515 request = flask .request
1616
17- # Adding this retro actively . Some folks are experiencing issues where they
17+ # Adding this retroactively . Some folks are experiencing issues where they
1818 # are getting a list rather than plain dict. I think it's from multiple
1919 # entries in the multidict. This should fix it.
2020 args = request .args
21- if isinstance (request . args , MultiDict ):
22- args = request . args .to_dict ()
21+ if isinstance (args , MultiDict ):
22+ args = args .to_dict ()
2323
2424 form = request .form
25- if isinstance (request . args , MultiDict ):
26- form = request . form .to_dict ()
25+ if isinstance (form , MultiDict ):
26+ form = form .to_dict ()
2727
2828 data = {
2929 ** args , # The key/value pairs in the URL query string
Original file line number Diff line number Diff line change 11#
2- # This file is autogenerated by pip-compile with Python 3.11
3- # by the following command :
2+ # This file is autogenerated by pip-compile with python 3.10
3+ # To update, run :
44#
5- # pip-compile
5+ # pip-compile requirements.in
66#
77click == 8.1.3
88 # via flask
@@ -24,7 +24,7 @@ markupsafe==2.1.1
2424 # werkzeug
2525more-itertools == 9.0.0
2626 # via -r requirements.in
27- pydantic == 1.10.2
27+ pydantic == 1.10.4
2828 # via -r requirements.in
2929typing-extensions == 4.4.0
3030 # via pydantic
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ def __getattr__(self, key):
1414def create (default_val = None , ** route_args ) -> RequestDictionary :
1515 request = flask .request
1616
17- # Adding this retro actively . Some folks are experiencing issues where they
17+ # Adding this retroactively . Some folks are experiencing issues where they
1818 # are getting a list rather than plain dict. I think it's from multiple
1919 # entries in the multidict. This should fix it.
2020 args = request .args
21- if isinstance (request . args , MultiDict ):
22- args = request . args .to_dict ()
21+ if isinstance (args , MultiDict ):
22+ args = args .to_dict ()
2323
2424 form = request .form
25- if isinstance (request . args , MultiDict ):
26- form = request . form .to_dict ()
25+ if isinstance (form , MultiDict ):
26+ form = form .to_dict ()
2727
2828 data = {
2929 ** args , # The key/value pairs in the URL query string
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ def __getattr__(self, key):
1414def create (default_val = None , ** route_args ) -> RequestDictionary :
1515 request = flask .request
1616
17- # Adding this retro actively . Some folks are experiencing issues where they
17+ # Adding this retroactively . Some folks are experiencing issues where they
1818 # are getting a list rather than plain dict. I think it's from multiple
1919 # entries in the multidict. This should fix it.
2020 args = request .args
21- if isinstance (request . args , MultiDict ):
22- args = request . args .to_dict ()
21+ if isinstance (args , MultiDict ):
22+ args = args .to_dict ()
2323
2424 form = request .form
25- if isinstance (request . args , MultiDict ):
26- form = request . form .to_dict ()
25+ if isinstance (form , MultiDict ):
26+ form = form .to_dict ()
2727
2828 data = {
2929 ** args , # The key/value pairs in the URL query string
You can’t perform that action at this time.
0 commit comments