Skip to content

Commit 3cceb04

Browse files
yileiMagenta Team
authored andcommitted
Remove unused comments related to Python 2 compatibility.
PiperOrigin-RevId: 441857435
1 parent 65a0a63 commit 3cceb04

18 files changed

+0
-18
lines changed

ddsp/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Base module for the differentiable digital signal processing library."""
1716

1817
# Module imports.

ddsp/core.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Library of functions for differentiable digital signal processing (DDSP)."""
1716

1817
import collections

ddsp/core_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Tests for ddsp.core."""
1716

1817
from absl.testing import parameterized

ddsp/dags.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Library of functions and layers of Directed Acyclical Graphs.
1716
1817
DAGLayer exists as an alternative to manually specifying the forward pass in

ddsp/dags_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Tests for ddsp.dags.py."""
1716

1817
from absl.testing import parameterized

ddsp/effects.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Library of effects functions."""
1716

1817
from ddsp import core

ddsp/effects_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Tests for ddsp.effects."""
1716

1817
from absl.testing import parameterized

ddsp/losses.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Library of loss functions."""
1716

1817
import functools

ddsp/losses_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Tests for ddsp.losses."""
1716

1817
from ddsp import core

ddsp/processors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Lint as: python3
1615
"""Library of base Processor and ProcessorGroup.
1716
1817
ProcessorGroup exists as an alternative to manually specifying the forward

0 commit comments

Comments
 (0)