You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
458 B
ReStructuredText
24 lines
458 B
ReStructuredText
Coding Standards
|
|
====================
|
|
|
|
Import ordering
|
|
-------------------
|
|
|
|
1. builtins imports
|
|
2. pip installed imports
|
|
3. framework imports
|
|
4. local project imports
|
|
|
|
.. rubric:: Sample
|
|
|
|
.. code-block:: python
|
|
|
|
from typing import Dict
|
|
from pathlib import Path
|
|
|
|
from kedro.framework.context import KedroContext, load_package_context
|
|
from kedro.pipeline import Pipeline
|
|
|
|
from actes_princiers.pipeline_registry import register_pipelines
|
|
|