Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bgunnar5 committed Jun 6, 2024
1 parent d8fa77c commit 8421d74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/fixtures/examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
"""

import os

import pytest


@pytest.fixture(scope="session")
def examples_testing_dir(temp_output_dir: str) -> str:
"""
Expand All @@ -17,4 +19,4 @@ def examples_testing_dir(temp_output_dir: str) -> str:
if not os.path.exists(testing_dir):
os.mkdir(testing_dir)

return testing_dir
return testing_dir
2 changes: 1 addition & 1 deletion tests/unit/test_examples_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"""

import os
import pytest
from typing import List

import pytest
from tabulate import tabulate

from merlin.examples.generator import (
Expand Down

0 comments on commit 8421d74

Please sign in to comment.