mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
⬜⬜ whitespace ⬜⬜
This commit is contained in:
2
Makefile
2
Makefile
@@ -2,7 +2,7 @@ IGNORE_ERRORS = E501,F401,F403,F405
|
||||
PKG = mathgenerator
|
||||
|
||||
format:
|
||||
python -m autopep8 --ignore=$(IGNORE_ERRORS) -i $(PKG)/*
|
||||
python -m autopep8 --ignore=$(IGNORE_ERRORS) -ir $(PKG)/*
|
||||
|
||||
lint:
|
||||
python -m flake8 --ignore=$(IGNORE_ERRORS) $(PKG)
|
||||
|
||||
@@ -14,7 +14,7 @@ def angleBtwVectorsFunc(maxEltAmt=20):
|
||||
solution = ''
|
||||
try:
|
||||
solution = str(math.acos(s / mags))
|
||||
except:
|
||||
except MathDomainError:
|
||||
print('angleBtwVectorsFunc has some issues with math module, line 16')
|
||||
solution = 'NaN'
|
||||
# would return the answer in radians
|
||||
|
||||
Reference in New Issue
Block a user