From 66aa0267cf895e8efdd364ecb766459870d3ac09 Mon Sep 17 00:00:00 2001 From: Felddy Date: Wed, 13 Mar 2024 13:42:35 -0400 Subject: [PATCH] Add module docstring to disable isort breaking import order. --- src/cyhy_db/models/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/cyhy_db/models/__init__.py b/src/cyhy_db/models/__init__.py index 05748be..7e2c947 100644 --- a/src/cyhy_db/models/__init__.py +++ b/src/cyhy_db/models/__init__.py @@ -1,3 +1,11 @@ +"""This module contains the models for the CyHy database. + +# Imports are ordered to avoid a circular import. +# isort is disabled for this file as it will break the ordering. + +isort:skip_file +""" + # Scan documents (order matters) from .scan_doc import ScanDoc from .host_scan_doc import HostScanDoc