diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-03-24 13:53:55 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-03-24 13:53:55 +0300 |
commit | 266d2c7b8b975ccc6361eb47bcab7e73b578a1f6 (patch) | |
tree | f2e765d51bcaa34a5d1d4e7ce93f1e0805a324d1 /tests/test_data_source.py | |
parent | start work on 0.10.6 (diff) | |
download | snakeoil-266d2c7b8b975ccc6361eb47bcab7e73b578a1f6.tar.gz snakeoil-266d2c7b8b975ccc6361eb47bcab7e73b578a1f6.tar.bz2 snakeoil-266d2c7b8b975ccc6361eb47bcab7e73b578a1f6.zip |
Reformat with black 23.1.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'tests/test_data_source.py')
-rw-r--r-- | tests/test_data_source.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_data_source.py b/tests/test_data_source.py index 1ede9aa0..b528e426 100644 --- a/tests/test_data_source.py +++ b/tests/test_data_source.py @@ -5,7 +5,6 @@ from snakeoil import compression, data_source class TestDataSource: - supports_mutable = True @pytest.fixture(autouse=True) @@ -144,7 +143,6 @@ class TestBz2Source(TestDataSource): class Test_invokable_data_source(TestDataSource): - supports_mutable = False def get_obj(self, data="foonani", mutable=False): @@ -161,7 +159,6 @@ class Test_invokable_data_source(TestDataSource): class Test_invokable_data_source_wrapper_text(Test_invokable_data_source): - supports_mutable = False text_mode = True @@ -180,5 +177,4 @@ class Test_invokable_data_source_wrapper_text(Test_invokable_data_source): class Test_invokable_data_source_wrapper_bytes(Test_invokable_data_source_wrapper_text): - text_mode = False |