From 15529f2f43dd17cfa1b9fc87cd713db1da06de2d Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Wed, 3 Jan 2024 07:46:04 -0700 Subject: [PATCH] flake8 line too long silence --- swarms/utils/load_model_torch.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/swarms/utils/load_model_torch.py b/swarms/utils/load_model_torch.py index 53649e93..113ff966 100644 --- a/swarms/utils/load_model_torch.py +++ b/swarms/utils/load_model_torch.py @@ -1,3 +1,6 @@ +""" Load a PyTorch model from a given path and move it to the specified device. """ +# flake8: noqa E501 + import torch from torch import nn