Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

package/python-nbformat: patch for py >=3.9 compat #183

Open
wants to merge 2 commits into
base: update-buildroot-2022.02.4
Choose a base branch
from
Open
Changes from 1 commit
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
From 0b66e0d6be6d62e4828108fd7993106c279fab75 Mon Sep 17 00:00:00 2001
From: Seth Foster <[email protected]>
Date: Thu, 20 Oct 2022 15:52:47 -0400
Subject: [PATCH] v1: remove unused deprecated import

---
nbformat/v1/nbjson.py | 1 -
1 file changed, 1 deletion(-)

diff --git a/nbformat/v1/nbjson.py b/nbformat/v1/nbjson.py
index 6af14c6..fd234c3 100644
--- a/nbformat/v1/nbjson.py
+++ b/nbformat/v1/nbjson.py
@@ -16,7 +16,6 @@ Authors:
# Imports
#-----------------------------------------------------------------------------

-from base64 import encodestring
from .rwbase import NotebookReader, NotebookWriter
from .nbbase import from_dict
import json
--
2.37.3