Commit a51a3008 authored by Pyre Bot Jr's avatar Pyre Bot Jr Committed by Facebook GitHub Bot
Browse files

suppress errors in `fbcode/vision` - batch 2

Differential Revision: D36120486

fbshipit-source-id: bddbf47957f4476f826ad20c2d6e146c98ee73e1
parent 2bd65027
...@@ -84,6 +84,8 @@ class VideoWriter: ...@@ -84,6 +84,8 @@ class VideoWriter:
or a 2-tuple defining the size of the output image. or a 2-tuple defining the size of the output image.
""" """
# pyre-fixme[6]: For 1st param expected `Union[PathLike[str], str]` but got
# `Optional[str]`.
outfile = os.path.join(self.cache_dir, self.regexp % self.frame_num) outfile = os.path.join(self.cache_dir, self.regexp % self.frame_num)
if isinstance(frame, matplotlib.figure.Figure): if isinstance(frame, matplotlib.figure.Figure):
...@@ -125,6 +127,8 @@ class VideoWriter: ...@@ -125,6 +127,8 @@ class VideoWriter:
video_path: The path to the generated video. video_path: The path to the generated video.
""" """
# pyre-fixme[6]: For 1st param expected `Union[PathLike[str], str]` but got
# `Optional[str]`.
regexp = os.path.join(self.cache_dir, self.regexp) regexp = os.path.join(self.cache_dir, self.regexp)
if self.output_format == "visdom": # works for ppt too if self.output_format == "visdom": # works for ppt too
......
...@@ -216,6 +216,8 @@ def load_obj( ...@@ -216,6 +216,8 @@ def load_obj(
""" """
data_dir = "./" data_dir = "./"
if isinstance(f, (str, bytes, Path)): if isinstance(f, (str, bytes, Path)):
# pyre-fixme[6]: For 1st param expected `PathLike[Variable[AnyStr <: [str,
# bytes]]]` but got `Union[Path, bytes, str]`.
data_dir = os.path.dirname(f) data_dir = os.path.dirname(f)
if path_manager is None: if path_manager is None:
path_manager = PathManager() path_manager = PathManager()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment