Skip to content

Commit

Permalink
Add support for tar files (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
meganomic authored Dec 14, 2020
1 parent ce24595 commit dd7b14e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtarfile/xtarfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'zst': ZstandardTarfile,
}

_NATIVE_FORMATS = ('gz', 'bz2', 'xz')
_NATIVE_FORMATS = ('gz', 'bz2', 'xz', 'tar')

SUPPORTED_FORMATS = frozenset(chain(_HANDLERS.keys(), _NATIVE_FORMATS))

Expand Down

0 comments on commit dd7b14e

Please sign in to comment.