From 680c3856fab53d4463b0802539d7f4deeecd93cf Mon Sep 17 00:00:00 2001 From: Ye Lin Aung Date: Tue, 23 Apr 2024 16:16:37 +0800 Subject: [PATCH 1/2] Create sample.py --- sample.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 sample.py diff --git a/sample.py b/sample.py new file mode 100644 index 0000000..090d6aa --- /dev/null +++ b/sample.py @@ -0,0 +1,16 @@ +import os # unused import + +def hello(): + print("hello") + print("another hello") + +mapping = { +1, +2, + 3 +} + +hello( ) +print(mapping) + + From 9c9e8d328129d493acb0e2b7b5ac9ce1f5ea1ce9 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:16:52 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20for?= =?UTF-8?q?mat=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sample.py | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/sample.py b/sample.py index 090d6aa..d122dbd 100644 --- a/sample.py +++ b/sample.py @@ -1,16 +1,9 @@ -import os # unused import - def hello(): - print("hello") - print("another hello") - -mapping = { -1, -2, - 3 -} + print("hello") + print("another hello") -hello( ) -print(mapping) +mapping = {1, 2, 3} +hello() +print(mapping)