Skip to content

Commit

Permalink
Add module docstring to disable isort breaking import order.
Browse files Browse the repository at this point in the history
  • Loading branch information
felddy committed Mar 13, 2024
1 parent 437096f commit 66aa026
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/cyhy_db/models/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 66aa026

Please sign in to comment.