From 6f7d3d0bf93f54abc03871a851c3f4e77b04b02e Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Thu, 5 Mar 2026 10:21:34 +0100 Subject: [PATCH] Apply ruff/Pylint preview rule PLR0402 Use `from ... import ...` in lieu of alias --- test/test_grapheme_clusters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_grapheme_clusters.py b/test/test_grapheme_clusters.py index 0a032b0..ef6d4e7 100644 --- a/test/test_grapheme_clusters.py +++ b/test/test_grapheme_clusters.py @@ -1,6 +1,6 @@ """Tests for Unicode grapheme cluster handling in tabulate.""" -import unittest.mock as mock +from unittest import mock import pytest