best-practice-and-impact / qa-of-code-guidance

Guidance for quality assurance of code for civil service researchers and analysts.
https://best-practice-and-impact.github.io/qa-of-code-guidance
Other
74 stars 18 forks source link

Update configuration code examples #164

Closed MarkPaulin closed 3 months ago

MarkPaulin commented 1 year ago

The python code examples in configuration chapter need updating.

  1. Using yaml.load(file) is deprecated, see here.
  2. On line 243, sys.argv < 2 should be len(sys.argv) < 2.

Happy to submit a PR to fix these.