Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions assignment.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
(*FIRST,) = [1, 2, 3] # documenting code no fun
*FIRST, a, b = [1, 2, 3, 7] # documenting code no fun
a, b = [1, 8, 2, 3, 5, 6,7, 8] # documenting code no fun hehehehehefffff
a, b = [1, 8, 2, 3, 5, 6, 7, 8] # documenting code no fun hehehehehefffff
c = 1


def not_covered():
print("hellooooow")
pass
print("hellooooow")
pass
6 changes: 4 additions & 2 deletions demo_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,9 @@ def tar_something():
def bad_isinstance(initial_condition, object, other_obj, foo, bar, baz):
pass


def not_check(x):
if x in (1, 2 ,7,3):
if x in (1, 2, 7, 3):
print("Yes")
elif x != 2 or x != 3:
print("also true")
Expand All @@ -114,7 +115,8 @@ def not_check(x):

elif x in (10, 20, 30):
print("Why even?")



def check(x):
if x in (1, 2, 3):
print("Yes")
Expand Down
1 change: 0 additions & 1 deletion django_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from django.views.decorators.http import require_http_methods



@require_http_methods(["GET", "POST"]) # Not Sensitive?????
def current_datetime(request):
now = datetime.datetime.now()
Expand Down