From 08daf4c16d71074493785178284efa0bb551901e Mon Sep 17 00:00:00 2001 From: NomsterDude <85312283+NomsterDude@users.noreply.github.com> Date: Thu, 9 Jun 2022 20:41:15 -0700 Subject: [PATCH] Update formatting of Imports in __init__.py Reformatted imports. --- dall_e/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dall_e/__init__.py b/dall_e/__init__.py index cd982fa..d76cdc5 100644 --- a/dall_e/__init__.py +++ b/dall_e/__init__.py @@ -1,9 +1,10 @@ -import io, requests +import io +import requests + import torch import torch.nn as nn -from dall_e.encoder import Encoder -from dall_e.decoder import Decoder +from dall_e.encoder import Encoder, Decoder from dall_e.utils import map_pixels, unmap_pixels def load_model(path: str, device: torch.device = None) -> nn.Module: