Adding upstream version 2.4.6.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
ef2f46d535
commit
aaad79d32f
14 changed files with 37 additions and 24 deletions
|
@ -1,12 +1,13 @@
|
|||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import json
|
||||
from typing import Optional
|
||||
from typing import Sequence
|
||||
|
||||
from identify import identify
|
||||
|
||||
|
||||
def main(argv: Optional[Sequence[str]] = None) -> int:
|
||||
def main(argv: Sequence[str] | None = None) -> int:
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--filename-only', action='store_true')
|
||||
parser.add_argument('path')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue