Procházet zdrojové kódy

Fix double colon in assert_expected_query_count docstring

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Brian Tiemann před 12 hodinami
rodič
revize
f6b975acda
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      netbox/utilities/testing/query_counts.py

+ 1 - 1
netbox/utilities/testing/query_counts.py

@@ -90,7 +90,7 @@ def assert_expected_query_count(test_case, name):
     derived from `test_case.model._meta.model_name`. Test cases that use
     runtime-generated models with unstable names (e.g. names derived from a
     database primary-key sequence) can declare a ``query_count_model_label``
-    class attribute to provide a stable, human-assigned label instead::
+    class attribute to provide a stable, human-assigned label instead:
 
         class MyViewTestCase(ViewTestCases.PrimaryObjectViewTestCase):
             query_count_model_label = 'my-stable-label'