@@ -510,8 +510,7 @@ def _upload_zip(self, model_type: str, model_path: str, model_file_name: str):
510510
511511 if self .public :
512512 print (
513- "View the status of your deployment at:"
514- f" { APP_URL } /{ self .workspace } /{ self .project } /{ self .version } "
513+ f"View the status of your deployment at: { APP_URL } /{ self .workspace } /{ self .project } /{ self .version } "
515514 )
516515 print (
517516 "Share your model with the world at:"
@@ -520,8 +519,7 @@ def _upload_zip(self, model_type: str, model_path: str, model_file_name: str):
520519 )
521520 else :
522521 print (
523- "View the status of your deployment at:"
524- f" { APP_URL } /{ self .workspace } /{ self .project } /{ self .version } "
522+ f"View the status of your deployment at: { APP_URL } /{ self .workspace } /{ self .project } /{ self .version } "
525523 )
526524
527525 except Exception as e :
@@ -543,7 +541,7 @@ def bar_progress(current, total, width=80):
543541 progress_message = (
544542 "Downloading Dataset Version Zip in "
545543 f"{ location } to { format } : "
546- f"{ current / total * 100 :.0f} % [{ current } / { total } ] bytes"
544+ f"{ current / total * 100 :.0f} % [{ current } / { total } ] bytes"
547545 )
548546 sys .stdout .write ("\r " + progress_message )
549547 sys .stdout .flush ()
@@ -642,7 +640,7 @@ def __get_format_identifier(self, format):
642640
643641 if not format :
644642 raise RuntimeError (
645- "You must pass a format argument to version.download() or define a" " model in your Roboflow object"
643+ "You must pass a format argument to version.download() or define a model in your Roboflow object"
646644 )
647645
648646 friendly_formats = {"yolov5" : "yolov5pytorch" , "yolov7" : "yolov7pytorch" }
0 commit comments