From ece139ffbe2d00934eb3b51cbaa06a283da04a5c Mon Sep 17 00:00:00 2001 From: RazrFalcon <razrfalcon@gmail.com> Date: Sun, 29 Jul 2018 17:36:43 +0300 Subject: [PATCH] Use shebang in all python scripts. --- json/client.py | 2 ++ multipart/client.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/json/client.py b/json/client.py index e89ffe09..5c303dcf 100644 --- a/json/client.py +++ b/json/client.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + # This script could be used for actix-web multipart example test # just start server and run client.py diff --git a/multipart/client.py b/multipart/client.py index afc07f17..95905760 100644 --- a/multipart/client.py +++ b/multipart/client.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + # This script could be used for actix-web multipart example test # just start server and run client.py