Python: SyntaxError: non-keyword po argumencie słowa kluczowego

Po uruchomieniu następującego kodu

def regEx1():
  os.chdir("C:/Users/Luke/Desktop/myFiles")
  files = os.listdir(".")
  os.mkdir("C:/Users/Luke/Desktop/FilesWithRegEx")
  regex_txt = input("Please enter the website your are looking for:")
  for x in (files):
    inputFile = open((x), encoding = "utf8", "r")
    content = inputFile.read()
    inputFile.close()
    regex = re.compile(regex_txt, re.IGNORECASE)
    if re.search(regex, content)is not None:
      shutil.copy(x, "C:/Users/Luke/Desktop/FilesWithRegEx")

Otrzymuję następujący komunikat o błędzie, który wskazuje pierwszą linię po pętli for.

      ^

SyntaxError: non-keyword arg after keyword arg

Co powoduje ten błąd?

questionAnswers(1)

yourAnswerToTheQuestion