Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Simplify import
  • Loading branch information
henrymercer committed Sep 10, 2025
commit d0f02ad6837ae6f14f131fba9795e124c5888675
10 changes: 1 addition & 9 deletions pr-checks/test_sync_back.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,10 @@

import os
import shutil
import sys
import tempfile
import unittest

# Add the current directory to sys.path and import the sync_back module
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))

# Import the sync-back module
import importlib.util
spec = importlib.util.spec_from_file_location("sync_back", os.path.join(os.path.dirname(__file__), "sync_back.py"))
sync_back = importlib.util.module_from_spec(spec)
spec.loader.exec_module(sync_back)
import sync_back


class TestSyncBack(unittest.TestCase):
Expand Down