We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
assert
1 parent 5d148ab commit 607ab16Copy full SHA for 607ab16
pyproject.toml
@@ -37,3 +37,4 @@ system-packages = true
37
[tool.ruff.lint.per-file-ignores]
38
"src/ScrollableContainers/__init__.py" = ["F401", "N999"]
39
"src/ScrollableContainers/_tk.py" = ["PLR2004"]
40
+"tests/**" = ["S101"]
tests/test_tk.py
@@ -1,7 +1,8 @@
1
import unittest
2
-import tkinter as tk
+
3
from ScrollableContainers import ScrollableFrameTk
4
5
6
class TestTk(unittest.TestCase):
7
def setUp(self):
8
self.scrollable_frame = ScrollableFrameTk()
0 commit comments