eecs485staff / issues

Community feedback for EECS 485 projects and labs
1 stars 0 forks source link

Including Tailwind via CDN causes html5validator to fail #39

Closed kschmott closed 1 year ago

kschmott commented 1 year ago

Which project? Add a GitHub label using the side bar, then delete this.

Describe the bug

A clear and concise description of what the bug is. Here are a few ideas.

A copy-paste of a traceback (prefer text, not screenshot)

$ python test.py
  File "test.py", line 2
    print(f"x = {x}")
                   ^
SyntaxError: invalid syntax

A quote from the source code of a public unit test.

def test():
    print(f"x = {x}")

A quote from the spec

Be sure to format your strings.

To Reproduce

Steps to reproduce the behavior.

  1. Use a Python f-string in solution code
  2. Submit code to the autograder

Expected behavior

Test should pass without an error about unsupported syntax.