Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test_supervisor.py #3647

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from

Conversation

gaurimakhija
Copy link

@gaurimakhija gaurimakhija commented Oct 23, 2024

The while loops in test_start_supervisor and other tests do not have timeouts, which may cause the tests to hang indefinitely if something goes wrong (e.g., the supervisor never starts or the API never returns the expected result).

Fix: Add a maximum retry count or timeout to prevent infinite looping:

Summary by CodeRabbit

  • Bug Fixes
    • Improved the reliability of the supervisor startup tests with a new retry mechanism for container readiness.
    • Enhanced error handling to better manage timeout scenarios during container initialization.

The while loops in test_start_supervisor and other tests do not have timeouts, which may cause the tests to hang indefinitely if something goes wrong (e.g., the supervisor never starts or the API never returns the expected result).

Fix: Add a maximum retry count or timeout to prevent infinite looping:
Copy link

coderabbitai bot commented Oct 23, 2024

📝 Walkthrough
📝 Walkthrough

Walkthrough

The changes made in the pull request primarily focus on the test_start_supervisor function within the tests/supervisor_test/test_supervisor.py file. A new retry mechanism has been introduced, replacing the previous infinite loop with a controlled loop that allows for a maximum of 120 retries, each separated by a 1-second interval. This ensures that the containers "homeassistant" and "hassio_supervisor" are running before the test proceeds. Enhanced error handling is also included, improving the robustness of the test without altering other functions or test cases.

Changes

File Change Summary
tests/supervisor_test/test_supervisor.py Introduced a retry mechanism in test_start_supervisor to check container status with a maximum of 120 retries and a 1-second interval; enhanced error handling while maintaining the existing ping check structure.

Sequence Diagram(s)

sequenceDiagram
    participant Test as Test
    participant Supervisor as Supervisor
    participant Container as Container

    Test->>Supervisor: Start test
    Supervisor->>Container: Check if "homeassistant" is running
    alt Container not running
        loop Retry up to 120 times
            Supervisor->>Container: Check again
            Container-->>Supervisor: Status
            Note over Supervisor: Wait 1 second
        end
    end
    Supervisor->>Test: Proceed if running
    alt Timeout
        Supervisor->>Test: Raise TimeoutError
    end
Loading

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Outside diff range and nitpick comments (1)
tests/supervisor_test/test_supervisor.py (1)

Line range hint 1-1: Consider adding timeout handling to other test functions.

The same infinite loop issue exists in other test functions:

  • test_update_supervisor: Contains an infinite loop waiting for supervisor update
  • test_restart_supervisor: Contains an infinite loop waiting for supervisor restart

To maintain consistency and prevent hanging tests, consider applying similar timeout handling to these functions. Would you like me to provide the implementation for these functions as well?

🧰 Tools
🪛 Ruff

37-37: SyntaxError: unindent does not match any outer indentation level


38-38: SyntaxError: Unexpected indentation


38-39: SyntaxError: Expected an indented block after while statement


43-43: SyntaxError: Expected a statement


43-43: SyntaxError: Expected a statement


43-44: SyntaxError: Expected a statement


44-44: SyntaxError: Unexpected indentation


46-46: SyntaxError: Unexpected indentation

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between a2ff594 and 874f590.

📒 Files selected for processing (1)
  • tests/supervisor_test/test_supervisor.py (1 hunks)
🧰 Additional context used
🪛 Ruff
tests/supervisor_test/test_supervisor.py

37-37: SyntaxError: unindent does not match any outer indentation level


38-38: SyntaxError: Unexpected indentation


38-39: SyntaxError: Expected an indented block after while statement


43-43: SyntaxError: Expected a statement


43-43: SyntaxError: Expected a statement


43-44: SyntaxError: Expected a statement


44-44: SyntaxError: Unexpected indentation

Comment on lines 36 to 44
retries = 0
max_retries = 300 # example: wait for max 300 seconds
while retries < max_retries:
if check_container_running("homeassistant") and check_container_running("hassio_supervisor"):
break
retries += 1
sleep(1)
else:
raise TimeoutError("Containers did not start in time")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix indentation issues and improve timeout implementation.

The current implementation has several issues:

  1. Severe indentation problems that would cause syntax errors
  2. Only the first while loop has timeout handling
  3. The timeout message could be more descriptive

Here's the corrected implementation with improved timeout handling for both loops:

-        retries = 0
-      max_retries = 300  # example: wait for max 300 seconds
-       while retries < max_retries:
-    if check_container_running("homeassistant") and check_container_running("hassio_supervisor"):
-        break
-    retries += 1
-    sleep(1)
-else:
-    raise TimeoutError("Containers did not start in time")
+    MAX_WAIT_TIME = 120  # 2 minutes should be sufficient
+    retries = 0
+    # Wait for containers to start
+    while retries < MAX_WAIT_TIME:
+        if check_container_running("homeassistant") and check_container_running("hassio_supervisor"):
+            break
+        retries += 1
+        sleep(1)
+    else:
+        raise TimeoutError(
+            f"Containers did not start within {MAX_WAIT_TIME} seconds. "
+            "Container status: "
+            f"homeassistant={check_container_running('homeassistant')}, "
+            f"hassio_supervisor={check_container_running('hassio_supervisor')}"
+        )
+
+    # Wait for supervisor ping
+    retries = 0
+    while retries < MAX_WAIT_TIME:
+        try:
+            if shell_json(f"curl -sSL http://{supervisor_ip}/supervisor/ping").get("result") == "ok":
+                break
+        except ExecutionError:
+            pass  # avoid failure when the container is restarting
+        retries += 1
+        sleep(1)
+    else:
+        raise TimeoutError(
+            f"Supervisor ping did not respond within {MAX_WAIT_TIME} seconds"
+        )

Key improvements:

  1. Fixed indentation
  2. Added timeout to both loops
  3. Reduced timeout to 120 seconds (2 minutes)
  4. Added detailed error messages with container status
  5. Consistent timeout handling between loops
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
retries = 0
max_retries = 300 # example: wait for max 300 seconds
while retries < max_retries:
if check_container_running("homeassistant") and check_container_running("hassio_supervisor"):
break
retries += 1
sleep(1)
else:
raise TimeoutError("Containers did not start in time")
MAX_WAIT_TIME = 120 # 2 minutes should be sufficient
retries = 0
# Wait for containers to start
while retries < MAX_WAIT_TIME:
if check_container_running("homeassistant") and check_container_running("hassio_supervisor"):
break
retries += 1
sleep(1)
else:
raise TimeoutError(
f"Containers did not start within {MAX_WAIT_TIME} seconds. "
"Container status: "
f"homeassistant={check_container_running('homeassistant')}, "
f"hassio_supervisor={check_container_running('hassio_supervisor')}"
)
# Wait for supervisor ping
retries = 0
while retries < MAX_WAIT_TIME:
try:
if shell_json(f"curl -sSL http://{supervisor_ip}/supervisor/ping").get("result") == "ok":
break
except ExecutionError:
pass # avoid failure when the container is restarting
retries += 1
sleep(1)
else:
raise TimeoutError(
f"Supervisor ping did not respond within {MAX_WAIT_TIME} seconds"
)
🧰 Tools
🪛 Ruff

37-37: SyntaxError: unindent does not match any outer indentation level


38-38: SyntaxError: Unexpected indentation


38-39: SyntaxError: Expected an indented block after while statement


43-43: SyntaxError: Expected a statement


43-43: SyntaxError: Expected a statement


43-44: SyntaxError: Expected a statement


44-44: SyntaxError: Unexpected indentation

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (3)
tests/supervisor_test/test_supervisor.py (3)

Line range hint 24-28: Remove redundant infinite loop.

This infinite loop should be removed since it's being replaced by the new implementation with proper timeout handling below.

-    while True:
-        if check_container_running("homeassistant") and check_container_running("hassio_supervisor"):
-            break
-
-        sleep(1)
🧰 Tools
🪛 Ruff

36-36: SyntaxError: Invalid assignment target


37-38: SyntaxError: Expected an expression


38-38: SyntaxError: Expected an identifier, but found a keyword 'while' that cannot be used here


38-38: SyntaxError: Simple statements must be separated by newlines or semicolons


38-39: SyntaxError: Expected an expression


39-39: SyntaxError: Expected an identifier, but found a keyword 'if' that cannot be used here


39-39: SyntaxError: Simple statements must be separated by newlines or semicolons


39-40: SyntaxError: Expected an expression


40-40: SyntaxError: Expected an identifier, but found a keyword 'break' that cannot be used here


41-41: SyntaxError: Invalid augmented assignment target


43-43: SyntaxError: Invalid annotated assignment target


43-43: SyntaxError: Expected an identifier, but found a keyword 'else' that cannot be used here


43-44: SyntaxError: Expected an expression


44-44: SyntaxError: Expected an identifier, but found a keyword 'raise' that cannot be used here


44-44: SyntaxError: Simple statements must be separated by newlines or semicolons


49-49: SyntaxError: Expected an expression


50-51: SyntaxError: Expected an expression


51-52: SyntaxError: Expected an expression


52-52: SyntaxError: Invalid assignment target


53-53: SyntaxError: Expected an identifier, but found a keyword 'while' that cannot be used here


53-53: SyntaxError: Simple statements must be separated by newlines or semicolons


53-54: SyntaxError: Expected an expression


54-54: SyntaxError: Invalid annotated assignment target


54-54: SyntaxError: Expected an identifier, but found a keyword 'try' that cannot be used here


54-55: SyntaxError: Expected an expression


55-55: SyntaxError: Expected an identifier, but found a keyword 'if' that cannot be used here


55-55: SyntaxError: Simple statements must be separated by newlines or semicolons


55-56: SyntaxError: Expected an expression


56-56: SyntaxError: Expected an identifier, but found a keyword 'break' that cannot be used here


57-57: SyntaxError: Expected an identifier, but found a keyword 'except' that cannot be used here


57-57: SyntaxError: Simple statements must be separated by newlines or semicolons


57-58: SyntaxError: Expected an expression


58-58: SyntaxError: Expected an identifier, but found a keyword 'pass' that cannot be used here


59-59: SyntaxError: Invalid augmented assignment target


61-61: SyntaxError: Invalid annotated assignment target


61-61: SyntaxError: Expected an identifier, but found a keyword 'else' that cannot be used here


61-62: SyntaxError: Expected an expression


62-62: SyntaxError: Expected an identifier, but found a keyword 'raise' that cannot be used here


62-62: SyntaxError: Simple statements must be separated by newlines or semicolons


64-64: SyntaxError: Expected an expression


35-64: LGTM! Consider minor improvements for better maintainability.

The timeout implementation effectively addresses the PR objectives by preventing infinite loops. The code is well-structured with proper error handling and descriptive error messages.

Suggestions for improvement:

  1. Consider moving MAX_WAIT_TIME to module level for reusability across test functions
  2. Add logging statements before raising timeout errors to help with debugging
 import logging
 from time import sleep
 
 import pytest
 from labgrid.driver import ExecutionError
 
+# Maximum time to wait for operations (in seconds)
+MAX_WAIT_TIME = 120  # 2 minutes should be sufficient
 
 logger = logging.getLogger(__name__)
 
@pytest.fixture(scope="module")
def stash() -> dict:
     """Simple stash for sharing data between tests in this module."""
     stash = {}
     return stash

@pytest.mark.dependency()
@pytest.mark.timeout(600)
def test_start_supervisor(shell, shell_json):
-    MAX_WAIT_TIME = 120  # 2 minutes should be sufficient
     retries = 0
     # Wait for containers to start
     while retries < MAX_WAIT_TIME:
         if check_container_running("homeassistant") and check_container_running("hassio_supervisor"):
             break
         retries += 1
         sleep(1)
     else:
+        logger.error(
+            "Container startup timeout: homeassistant=%s, hassio_supervisor=%s",
+            check_container_running("homeassistant"),
+            check_container_running("hassio_supervisor")
+        )
         raise TimeoutError(
             f"Containers did not start within {MAX_WAIT_TIME} seconds. "
             "Container status: "
             f"homeassistant={check_container_running('homeassistant')}, "
             f"hassio_supervisor={check_container_running('hassio_supervisor')}"
         )
🧰 Tools
🪛 Ruff

36-36: SyntaxError: Invalid assignment target


37-38: SyntaxError: Expected an expression


38-38: SyntaxError: Expected an identifier, but found a keyword 'while' that cannot be used here


38-38: SyntaxError: Simple statements must be separated by newlines or semicolons


38-39: SyntaxError: Expected an expression


39-39: SyntaxError: Expected an identifier, but found a keyword 'if' that cannot be used here


39-39: SyntaxError: Simple statements must be separated by newlines or semicolons


39-40: SyntaxError: Expected an expression


40-40: SyntaxError: Expected an identifier, but found a keyword 'break' that cannot be used here


41-41: SyntaxError: Invalid augmented assignment target


43-43: SyntaxError: Invalid annotated assignment target


43-43: SyntaxError: Expected an identifier, but found a keyword 'else' that cannot be used here


43-44: SyntaxError: Expected an expression


44-44: SyntaxError: Expected an identifier, but found a keyword 'raise' that cannot be used here


44-44: SyntaxError: Simple statements must be separated by newlines or semicolons


49-49: SyntaxError: Expected an expression


50-51: SyntaxError: Expected an expression


51-52: SyntaxError: Expected an expression


52-52: SyntaxError: Invalid assignment target


53-53: SyntaxError: Expected an identifier, but found a keyword 'while' that cannot be used here


53-53: SyntaxError: Simple statements must be separated by newlines or semicolons


53-54: SyntaxError: Expected an expression


54-54: SyntaxError: Invalid annotated assignment target


54-54: SyntaxError: Expected an identifier, but found a keyword 'try' that cannot be used here


54-55: SyntaxError: Expected an expression


55-55: SyntaxError: Expected an identifier, but found a keyword 'if' that cannot be used here


55-55: SyntaxError: Simple statements must be separated by newlines or semicolons


55-56: SyntaxError: Expected an expression


56-56: SyntaxError: Expected an identifier, but found a keyword 'break' that cannot be used here


57-57: SyntaxError: Expected an identifier, but found a keyword 'except' that cannot be used here


57-57: SyntaxError: Simple statements must be separated by newlines or semicolons


57-58: SyntaxError: Expected an expression


58-58: SyntaxError: Expected an identifier, but found a keyword 'pass' that cannot be used here


59-59: SyntaxError: Invalid augmented assignment target


61-61: SyntaxError: Invalid annotated assignment target


61-61: SyntaxError: Expected an identifier, but found a keyword 'else' that cannot be used here


61-62: SyntaxError: Expected an expression


62-62: SyntaxError: Expected an identifier, but found a keyword 'raise' that cannot be used here


62-62: SyntaxError: Simple statements must be separated by newlines or semicolons


64-64: SyntaxError: Expected an expression


Line range hint 108-125: Add timeout handling to remaining infinite loops.

There are two more infinite loops in the file that should be updated with similar timeout handling:

  1. In test_update_supervisor (lines 108-125)
  2. In test_restart_supervisor (lines 156-166)

This ensures consistent behavior across all test functions and prevents any potential test hangs.

Would you like me to provide the implementation for adding timeout handling to these loops as well?

Also applies to: 156-166

🧰 Tools
🪛 Ruff

36-36: SyntaxError: Invalid assignment target


37-38: SyntaxError: Expected an expression


38-38: SyntaxError: Expected an identifier, but found a keyword 'while' that cannot be used here


38-38: SyntaxError: Simple statements must be separated by newlines or semicolons


38-39: SyntaxError: Expected an expression


39-39: SyntaxError: Expected an identifier, but found a keyword 'if' that cannot be used here


39-39: SyntaxError: Simple statements must be separated by newlines or semicolons


39-40: SyntaxError: Expected an expression


40-40: SyntaxError: Expected an identifier, but found a keyword 'break' that cannot be used here


41-41: SyntaxError: Invalid augmented assignment target


43-43: SyntaxError: Invalid annotated assignment target


43-43: SyntaxError: Expected an identifier, but found a keyword 'else' that cannot be used here


43-44: SyntaxError: Expected an expression


44-44: SyntaxError: Expected an identifier, but found a keyword 'raise' that cannot be used here


44-44: SyntaxError: Simple statements must be separated by newlines or semicolons


49-49: SyntaxError: Expected an expression


50-51: SyntaxError: Expected an expression


51-52: SyntaxError: Expected an expression


52-52: SyntaxError: Invalid assignment target


53-53: SyntaxError: Expected an identifier, but found a keyword 'while' that cannot be used here


53-53: SyntaxError: Simple statements must be separated by newlines or semicolons


53-54: SyntaxError: Expected an expression


54-54: SyntaxError: Invalid annotated assignment target


54-54: SyntaxError: Expected an identifier, but found a keyword 'try' that cannot be used here


54-55: SyntaxError: Expected an expression


55-55: SyntaxError: Expected an identifier, but found a keyword 'if' that cannot be used here


55-55: SyntaxError: Simple statements must be separated by newlines or semicolons


55-56: SyntaxError: Expected an expression


56-56: SyntaxError: Expected an identifier, but found a keyword 'break' that cannot be used here


57-57: SyntaxError: Expected an identifier, but found a keyword 'except' that cannot be used here


57-57: SyntaxError: Simple statements must be separated by newlines or semicolons


57-58: SyntaxError: Expected an expression


58-58: SyntaxError: Expected an identifier, but found a keyword 'pass' that cannot be used here


59-59: SyntaxError: Invalid augmented assignment target


61-61: SyntaxError: Invalid annotated assignment target


61-61: SyntaxError: Expected an identifier, but found a keyword 'else' that cannot be used here


61-62: SyntaxError: Expected an expression


62-62: SyntaxError: Expected an identifier, but found a keyword 'raise' that cannot be used here


62-62: SyntaxError: Simple statements must be separated by newlines or semicolons


64-64: SyntaxError: Expected an expression

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 874f590 and 6791557.

📒 Files selected for processing (1)
  • tests/supervisor_test/test_supervisor.py (1 hunks)
🧰 Additional context used
🪛 Ruff
tests/supervisor_test/test_supervisor.py

36-36: SyntaxError: Invalid assignment target


37-38: SyntaxError: Expected an expression


38-38: SyntaxError: Expected an identifier, but found a keyword 'while' that cannot be used here


38-38: SyntaxError: Simple statements must be separated by newlines or semicolons


38-39: SyntaxError: Expected an expression


39-39: SyntaxError: Expected an identifier, but found a keyword 'if' that cannot be used here


39-39: SyntaxError: Simple statements must be separated by newlines or semicolons


39-40: SyntaxError: Expected an expression


40-40: SyntaxError: Expected an identifier, but found a keyword 'break' that cannot be used here


41-41: SyntaxError: Invalid augmented assignment target


43-43: SyntaxError: Invalid annotated assignment target


43-43: SyntaxError: Expected an identifier, but found a keyword 'else' that cannot be used here


43-44: SyntaxError: Expected an expression


44-44: SyntaxError: Expected an identifier, but found a keyword 'raise' that cannot be used here


44-44: SyntaxError: Simple statements must be separated by newlines or semicolons


49-49: SyntaxError: Expected an expression


50-51: SyntaxError: Expected an expression


51-52: SyntaxError: Expected an expression


52-52: SyntaxError: Invalid assignment target


53-53: SyntaxError: Expected an identifier, but found a keyword 'while' that cannot be used here


53-53: SyntaxError: Simple statements must be separated by newlines or semicolons


53-54: SyntaxError: Expected an expression


54-54: SyntaxError: Invalid annotated assignment target


54-54: SyntaxError: Expected an identifier, but found a keyword 'try' that cannot be used here


54-55: SyntaxError: Expected an expression


55-55: SyntaxError: Expected an identifier, but found a keyword 'if' that cannot be used here


55-55: SyntaxError: Simple statements must be separated by newlines or semicolons


55-56: SyntaxError: Expected an expression


56-56: SyntaxError: Expected an identifier, but found a keyword 'break' that cannot be used here


57-57: SyntaxError: Expected an identifier, but found a keyword 'except' that cannot be used here


57-57: SyntaxError: Simple statements must be separated by newlines or semicolons


57-58: SyntaxError: Expected an expression


58-58: SyntaxError: Expected an identifier, but found a keyword 'pass' that cannot be used here


59-59: SyntaxError: Invalid augmented assignment target


61-61: SyntaxError: Invalid annotated assignment target


61-61: SyntaxError: Expected an identifier, but found a keyword 'else' that cannot be used here


61-62: SyntaxError: Expected an expression


62-62: SyntaxError: Expected an identifier, but found a keyword 'raise' that cannot be used here


62-62: SyntaxError: Simple statements must be separated by newlines or semicolons


64-64: SyntaxError: Expected an expression

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant