Fixing unit testing importing unexpected and unused libraries.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ad5001 2024-10-17 03:41:41 +02:00
parent a182c703f4
commit 2899ac6cde
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
2 changed files with 5 additions and 4 deletions

6
.gitignore vendored
View file

@ -37,8 +37,10 @@ docs/html
*.lpf *.lpf
*.lgg *.lgg
# Tests
common/coverage/
**/.coverage
# npm # npm
common/node_modules common/node_modules
common/coverage/
common/.coverage
runtime-pyside6/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/js/index.mjs* runtime-pyside6/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/js/index.mjs*

View file

@ -15,8 +15,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from idlelib.configdialog import is_int from math import log10, floor
from math import log10, floor, ceil
from typing import Self from typing import Self
from .assertion import Assertion from .assertion import Assertion