From 4c931fd506c6898dbe523bcac226b038c0f13907 Mon Sep 17 00:00:00 2001 From: Madalyn Bartman <105222619+madalynbartman@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:11:54 -0600 Subject: [PATCH 01/13] Update accessing_a_protected_member_from_outside_the_class.html --- .../accessing_a_protected_member_from_outside_the_class.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/correctness/accessing_a_protected_member_from_outside_the_class.html b/docs/correctness/accessing_a_protected_member_from_outside_the_class.html index 087e955..40a81c0 100644 --- a/docs/correctness/accessing_a_protected_member_from_outside_the_class.html +++ b/docs/correctness/accessing_a_protected_member_from_outside_the_class.html @@ -166,7 +166,7 @@

Best practice

References

@@ -241,4 +241,4 @@

References - \ No newline at end of file + From 23f2c310eb6e8536e2291775e971a837916db1bb Mon Sep 17 00:00:00 2001 From: Madalyn Bartman <105222619+madalynbartman@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:14:30 -0600 Subject: [PATCH 02/13] Update bad_except_clauses_order.html --- docs/correctness/bad_except_clauses_order.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/correctness/bad_except_clauses_order.html b/docs/correctness/bad_except_clauses_order.html index 21343ec..e59c571 100644 --- a/docs/correctness/bad_except_clauses_order.html +++ b/docs/correctness/bad_except_clauses_order.html @@ -169,7 +169,7 @@

Move sub class exception clause before its ancestor’s clause

References

@@ -244,4 +244,4 @@

References - \ No newline at end of file + From 6478e08814f763a59d636683427fed03d4741874 Mon Sep 17 00:00:00 2001 From: Madalyn Bartman <105222619+madalynbartman@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:16:27 -0600 Subject: [PATCH 03/13] Update bad_first_argument_given_to_super.html --- docs/correctness/bad_first_argument_given_to_super.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/correctness/bad_first_argument_given_to_super.html b/docs/correctness/bad_first_argument_given_to_super.html index cef6ada..270e60d 100644 --- a/docs/correctness/bad_first_argument_given_to_super.html +++ b/docs/correctness/bad_first_argument_given_to_super.html @@ -208,7 +208,7 @@

ReferencesPython Standard Library - super([type[, object-or-type]])

  • Stack Overflow - What is a basic example of single inheritance using super()?

  • Stack Overflow - Python super() inheritance and arguments needed

  • -
  • PyLint - E1003, bad-super-call

  • +
  • PyLint - E1003, bad-super-call

  • PEP 3135 - New Super

  • @@ -284,4 +284,4 @@

    References - \ No newline at end of file + From 986c7b4b0954e2e151003b11a70cf8e2a3aef9e1 Mon Sep 17 00:00:00 2001 From: Madalyn Bartman <105222619+madalynbartman@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:18:32 -0600 Subject: [PATCH 04/13] Update else_clause_on_loop_without_a_break_statement.html --- .../else_clause_on_loop_without_a_break_statement.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/correctness/else_clause_on_loop_without_a_break_statement.html b/docs/correctness/else_clause_on_loop_without_a_break_statement.html index e0ef708..1eabdce 100644 --- a/docs/correctness/else_clause_on_loop_without_a_break_statement.html +++ b/docs/correctness/else_clause_on_loop_without_a_break_statement.html @@ -177,7 +177,7 @@

    Insert a break< @@ -253,4 +253,4 @@

    References - \ No newline at end of file + From 761fbb28ae618918a6825f71243bede804dbd2cb Mon Sep 17 00:00:00 2001 From: Madalyn Bartman <105222619+madalynbartman@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:20:36 -0600 Subject: [PATCH 05/13] Update exit_must_accept_three_arguments.html --- docs/correctness/exit_must_accept_three_arguments.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/correctness/exit_must_accept_three_arguments.html b/docs/correctness/exit_must_accept_three_arguments.html index 6e34d38..39bd7a2 100644 --- a/docs/correctness/exit_must_accept_three_arguments.html +++ b/docs/correctness/exit_must_accept_three_arguments.html @@ -215,7 +215,7 @@

    Best practices

    References