Unverified Commit 4b3c31b8 authored by lassulus's avatar lassulus Committed by GitHub
Browse files

Merge pull request #334776 from aos/aos/update-writepy3-example

fix: Update writePython3Bin docs
parents 60ee3683 55e4114f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -767,7 +767,7 @@ rec {
  # writePython3 "test_python3" { libraries = [ pkgs.python3Packages.pyyaml ]; } ''
  #   import yaml
  #
  #   y = yaml.load("""
  #   y = yaml.safe_load("""
  #     - test: success
  #   """)
  #   print(y[0]['test'])
@@ -784,7 +784,7 @@ rec {
  # writePyPy3 "test_pypy3" { libraries = [ pkgs.pypy3Packages.pyyaml ]; } ''
  #   import yaml
  #
  #   y = yaml.load("""
  #   y = yaml.safe_load("""
  #     - test: success
  #   """)
  #   print(y[0]['test'])