Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
fix(encoder): fix params in basevideo encoder
Browse files Browse the repository at this point in the history
  • Loading branch information
Larryjianfeng committed Aug 1, 2019
1 parent 5b0fe7c commit 15eb50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnes/encoder/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def encode(self, img: List['np.ndarray'], *args, **kwargs) -> np.ndarray:

class BaseVideoEncoder(BaseEncoder):

def encode(self, img: List['np.ndarray'], *args, **kwargs) -> np.ndarray:
def encode(self, videos: List['np.ndarray'], *args, **kwargs) -> np.ndarray:
pass


Expand Down

0 comments on commit 15eb50b

Please sign in to comment.