Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions chc/util/ConfigLocal.template
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ The config object passed to getLocals is the universal Config, you can update
any of that config's variables here if you want to use a value other than the default.
"""

import os
from typing import TYPE_CHECKING

import chc.util.Config
if TYPE_CHECKING:
from chc.util.Config import Config


def getLocals(config: chc.util.Config.Config) -> None:
def getLocals(config: Config) -> None:
'''Set local configuration variables here if they differ from the defaults in Config.py

Example :
Expand Down