[arvados] updated: 2.7.0-6029-g6d7ad47255
git repository hosting
git at public.arvados.org
Thu Feb 15 22:47:00 UTC 2024
Summary of changes:
sdk/python/arvados/http_to_keep.py | 23 ++++++++++-------------
1 file changed, 10 insertions(+), 13 deletions(-)
via 6d7ad47255a49c583f2fb0d78e6df5029c9ba56b (commit)
from f8351929a502d46a1f95a2b270466ffeb16bf307 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 6d7ad47255a49c583f2fb0d78e6df5029c9ba56b
Author: Brett Smith <brett.smith at curii.com>
Date: Thu Feb 15 17:45:42 2024 -0500
21453: Clean imports in arvados.http_to_keep
This is to force Jenkins to build a new PySDK package. Right now it's
trying to run the test updated in the previous commit without updating
the package first, and failing. But this should still be a nice change.
Refs #21453.
Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>
diff --git a/sdk/python/arvados/http_to_keep.py b/sdk/python/arvados/http_to_keep.py
index 1da8cf4946..f247afeaff 100644
--- a/sdk/python/arvados/http_to_keep.py
+++ b/sdk/python/arvados/http_to_keep.py
@@ -2,23 +2,20 @@
#
# SPDX-License-Identifier: Apache-2.0
-from __future__ import division
-from future import standard_library
-standard_library.install_aliases()
-
-import email.utils
-import time
+import calendar
+import dataclasses
import datetime
-import re
-import arvados
-import arvados.collection
-import urllib.parse
+import email.utils
import logging
-import calendar
+import re
+import time
+import typing
import urllib.parse
+
import pycurl
-import dataclasses
-import typing
+
+import arvados
+import arvados.collection
from arvados._pycurlhelper import PyCurlHelper
logger = logging.getLogger('arvados.http_import')
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list