Skip to content

Commit

Permalink
ignore untyped protobufs
Browse files Browse the repository at this point in the history
  • Loading branch information
kralverde committed Oct 15, 2023
1 parent f65cb3e commit 0fc2bd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions unix_fs_exporter/ipfs_dag_pb/dag_pb.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import attr

from typing import Optional, Sequence
from typing import Sequence

from google.protobuf.message import DecodeError
from google.protobuf.message import DecodeError # type: ignore
from multiformats import CID

from . import dag_pb_pb2 as pb2
Expand Down
2 changes: 1 addition & 1 deletion unix_fs_exporter/ipfs_unix_fs/unix_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Optional, List

from . import unixfs_pb2 as pb2
from google.protobuf.message import DecodeError
from google.protobuf.message import DecodeError # type: ignore

class UnixFSFormatException(Exception): pass

Expand Down

0 comments on commit 0fc2bd2

Please sign in to comment.