Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Moosems committed Sep 6, 2024
1 parent f14aed2 commit b8475d4
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 29 deletions.
1 change: 0 additions & 1 deletion collegamento/client_server/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

from multiprocessing import Process, Queue, freeze_support
from random import randint
from time import sleep

from .server import Server
from .utils import (
Expand Down
8 changes: 1 addition & 7 deletions docs/source/examples/file_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,7 @@ File Example
from time import sleep
from collegamento import (
USER_FUNCTION,
FileClient,
FileServer,
Request,
Response,
)
from collegamento import FileClient, FileServer, Request, Response
def split_str(server: "FileServer", arg: Request) -> list[str]:
Expand Down
8 changes: 1 addition & 7 deletions docs/source/examples/simple_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,7 @@ Simple Example
from time import sleep
from collegamento import (
USER_FUNCTION,
Request,
Response,
Client,
Server,
)
from collegamento import Client, Request, Response, Server
def foo(server: "Server", bar: Request) -> bool:
Expand Down
8 changes: 1 addition & 7 deletions examples/file_example.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
from time import sleep

from collegamento import (
USER_FUNCTION,
FileClient,
FileServer,
Request,
Response,
)
from collegamento import FileClient, FileServer, Request, Response


def split_str(server: "FileServer", arg: Request) -> list[str]:
Expand Down
8 changes: 1 addition & 7 deletions examples/simple_example.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
from time import sleep

from collegamento import (
USER_FUNCTION,
Request,
Response,
Client,
Server,
)
from collegamento import Client, Request, Response, Server


def foo(server: "Server", bar: Request) -> bool:
Expand Down

0 comments on commit b8475d4

Please sign in to comment.