From b4ace9baf7e808b5d02e10911079879418079531 Mon Sep 17 00:00:00 2001 From: Qexat <43090614+qexat@users.noreply.github.com> Date: Wed, 11 Dec 2024 10:30:43 +0100 Subject: [PATCH] feat: identify bz3 files as bzip3 archives --- identify/extensions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/identify/extensions.py b/identify/extensions.py index 10fe83f..172e9c7 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -20,6 +20,7 @@ 'bib': {'text', 'bib'}, 'bmp': {'binary', 'image', 'bitmap'}, 'bz2': {'binary', 'bzip2'}, + 'bz3': {'binary', 'bzip3'}, 'bzl': {'text', 'bazel'}, 'c': {'text', 'c'}, 'c++': {'text', 'c++'},