whitespace

This commit is contained in:
D-T-666
2020-10-19 23:19:11 +04:00
parent 47b9c594fa
commit a9c4249273
3 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ IGNORE_ERRORS = E501,F401,F403,F405
PKG = mathgenerator PKG = mathgenerator
format: format:
python -m autopep8 --ignore=$(IGNORE_ERRORS) -i $(PKG)/* python -m autopep8 --ignore=$(IGNORE_ERRORS) -ir $(PKG)/*
lint: lint:
python -m flake8 --ignore=$(IGNORE_ERRORS) $(PKG) python -m flake8 --ignore=$(IGNORE_ERRORS) $(PKG)

View File

@@ -14,7 +14,7 @@ def angleBtwVectorsFunc(maxEltAmt=20):
solution = '' solution = ''
try: try:
solution = str(math.acos(s / mags)) solution = str(math.acos(s / mags))
except: except MathDomainError:
print('angleBtwVectorsFunc has some issues with math module, line 16') print('angleBtwVectorsFunc has some issues with math module, line 16')
solution = 'NaN' solution = 'NaN'
# would return the answer in radians # would return the answer in radians