From 8921d5d1c032d3bf49420ae5f53ab9775a82b953 Mon Sep 17 00:00:00 2001 From: mejrs Date: Tue, 3 May 2022 11:36:24 +0200 Subject: [PATCH] Fix CI --- assets/script.py | 3 ++- guide/src/migration.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/script.py b/assets/script.py index 6d45318c..897bd3ec 100644 --- a/assets/script.py +++ b/assets/script.py @@ -1,4 +1,5 @@ # Used in PyModule examples. + class Blah: - pass \ No newline at end of file + pass diff --git a/guide/src/migration.md b/guide/src/migration.md index cfb7646c..b2b1b2cf 100644 --- a/guide/src/migration.md +++ b/guide/src/migration.md @@ -776,6 +776,7 @@ impl PySequenceProtocol for ByteSequence { After: ```rust +# #[allow(deprecated)] # #[cfg(feature = "pyproto")] # { # use pyo3::prelude::*;