Rename "error" package to "errors"

This commit is contained in:
Dan 2020-11-13 17:59:41 +01:00
parent 6a8741124d
commit 1b42fb7f77
13 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ from setuptools import setup, find_packages, Command
from compiler.api import compiler as api_compiler
from compiler.docs import compiler as docs_compiler
from compiler.error import compiler as error_compiler
from compiler.errors import compiler as error_compiler
with open("requirements.txt", encoding="utf-8") as r:
requires = [i.strip() for i in r]