From f04b2bd25550b95db776f865c645e8dad8660899 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 5 Jul 2022 00:08:51 +0200 Subject: [PATCH] remove coding: from cython files, utf-8 is default encoding --- src/borg/chunker.pyx | 2 -- src/borg/hashindex.pyx | 1 - 2 files changed, 3 deletions(-) diff --git a/src/borg/chunker.pyx b/src/borg/chunker.pyx index d9c31d3e3..f11e93b2d 100644 --- a/src/borg/chunker.pyx +++ b/src/borg/chunker.pyx @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - API_VERSION = '1.2_01' import errno diff --git a/src/borg/hashindex.pyx b/src/borg/hashindex.pyx index 15b59b5da..3df89f365 100644 --- a/src/borg/hashindex.pyx +++ b/src/borg/hashindex.pyx @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from collections import namedtuple cimport cython