From b4d5e86ebeca2d6d700300ff9ea5ee3803c61afa Mon Sep 17 00:00:00 2001 From: sohaibimran-10xe <87118558+sohaibimran-10xe@users.noreply.github.com> Date: Thu, 9 Feb 2023 11:54:35 +0500 Subject: [PATCH 1/3] Update python.py --- python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python.py b/python.py index 1092d45..900b297 100644 --- a/python.py +++ b/python.py @@ -3,6 +3,6 @@ """ z = 1 B = 2 -H = z + B +h = z + B -print(H) +print(h) From 3e88958630ed6270ae807ab2f3236556cfa2d1df Mon Sep 17 00:00:00 2001 From: sohaibimran-10xe <87118558+sohaibimran-10xe@users.noreply.github.com> Date: Thu, 9 Feb 2023 12:05:19 +0500 Subject: [PATCH 2/3] update with correct linting --- python.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python.py b/python.py index 900b297..56bb4a6 100644 --- a/python.py +++ b/python.py @@ -1,8 +1,8 @@ """ This is a doc string """ -z = 1 +Z = 1 B = 2 -h = z + B +H = Z + B -print(h) +print(H) From 11386c33e886baceaf8acd8cd5ab32f8ae658571 Mon Sep 17 00:00:00 2001 From: sohaibimran-10xe <87118558+sohaibimran-10xe@users.noreply.github.com> Date: Thu, 9 Feb 2023 12:21:33 +0500 Subject: [PATCH 3/3] Update python.py --- python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python.py b/python.py index 56bb4a6..807429e 100644 --- a/python.py +++ b/python.py @@ -3,6 +3,6 @@ """ Z = 1 B = 2 -H = Z + B +h = Z + B -print(H) +print(h)