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

Fix configuration examples #178

Closed MarkPaulin closed 3 months ago

MarkPaulin commented 4 months ago

Configuration python examples use yaml.load(), which is deprecated, and sys.argv < 2 will throw an error. I've updated to use yaml.safe_load() and fix the argument check to len(sys.argv) < 2.

Closes #164