Skip to content

Commit fa2445e

Browse files
committed
Lint
1 parent a76d6a0 commit fa2445e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/torchcodec/decoders/_core/AVIOBytesContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// This source code is licensed under the BSD-style license found in the
55
// LICENSE file in the root directory of this source tree.
66

7-
#include <torch/types.h>
87
#include "src/torchcodec/decoders/_core/AVIOBytesContext.h"
8+
#include <torch/types.h>
99

1010
namespace facebook::torchcodec {
1111

src/torchcodec/decoders/_core/AVIOContextHolder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// This source code is licensed under the BSD-style license found in the
55
// LICENSE file in the root directory of this source tree.
66

7-
#include <torch/types.h>
87
#include "src/torchcodec/decoders/_core/AVIOContextHolder.h"
8+
#include <torch/types.h>
99

1010
namespace facebook::torchcodec {
1111

src/torchcodec/decoders/_core/AVIOFileLikeContext.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
// This source code is licensed under the BSD-style license found in the
55
// LICENSE file in the root directory of this source tree.
66

7-
#include <torch/types.h>
87
#include "src/torchcodec/decoders/_core/AVIOFileLikeContext.h"
8+
#include <torch/types.h>
99

1010
namespace facebook::torchcodec {
1111

1212
AVIOFileLikeContext::AVIOFileLikeContext(py::object fileLike)
13-
: fileLike_{UniquePyObject(new py::object(fileLike))} {
13+
: fileLike_{UniquePyObject(new py::object(fileLike))} {
1414
{
1515
// TODO: Is it necessary to acquire the GIL here? Is it maybe even
1616
// harmful? At the moment, this is only called from within a pybind

0 commit comments

Comments
 (0)