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 fix/analytics data export cleanup #4300

Conversation

NicholasTurner23
Copy link
Contributor

@NicholasTurner23 NicholasTurner23 commented Jan 28, 2025

Description

Just some cleanup

Summary by CodeRabbit

  • Refactor

    • Consolidated filtering functions for sites and devices into a single, more flexible method
    • Updated variable names from tenant to network across multiple files
    • Removed unused utility functions related to string conversions
  • Bug Fixes

    • Improved error handling in data filtering functions
    • Enhanced data retrieval logic for BigQuery table references
  • Chores

    • Streamlined code structure and naming conventions
    • Improved overall code maintainability and clarity

Copy link
Contributor

coderabbitai bot commented Jan 28, 2025

📝 Walkthrough

Walkthrough

This pull request introduces significant refactoring across multiple files in the analytics API, focusing on consolidating and standardizing the handling of sites and devices. The changes primarily involve renaming parameters, updating SQL query constructions, and creating a unified filtering approach for sites and devices. The modifications aim to improve code clarity, reduce redundancy, and enhance the consistency of data retrieval and filtering methods.

Changes

File Change Summary
src/analytics/api/models/events.py - Replaced tenant with network in constructor
- Updated BigQuery table references
- Modified SQL query methods to use new table names
src/analytics/api/utils/data_formatters.py - Renamed filter_non_private_devices to filter_non_private_sites_devices
- Added error handling for empty filter values
- Removed tenant_to_str and device_category_to_str functions
src/analytics/api/views/dashboard.py - Consolidated filtering functions
- Replaced tenant with network
- Updated data retrieval to use new filtering method
src/analytics/api/views/data.py - Unified filtering approach for sites and devices
- Updated data retrieval methods

Possibly related PRs

Suggested Reviewers

  • Baalmart
  • BenjaminSsempala
  • Psalmz777

Poem

Code flows like rivers, refactored and bright,
Devices and sites now dance in delight 🌐
Tenant becomes network, queries realign
Simplicity blooms with each elegant line 🌟
Refactoring magic, our codebase takes flight! 🚀

✨ Finishing Touches
  • 📝 Generate Docstrings (Beta)

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 generate docstrings to generate docstrings for this PR. (Beta)
  • @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 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
Contributor

@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: 9

🧹 Nitpick comments (3)
src/analytics/api/utils/data_formatters.py (1)

293-304: Enhance type hints and documentation.

While the function signature and docstring are clear, they could be more detailed:

-def filter_non_private_sites_devices(
-    filter_type: str, filter_value: List[str]
-) -> Dict[str, Any]:
+def filter_non_private_sites_devices(
+    filter_type: Literal["devices", "sites"], filter_value: List[str]
+) -> Dict[str, Union[str, List[str], bool]]:
     """
     Filters out private device/site IDs from a provided array of device IDs.

     Args:
-        filter_type(str): A string either devices or sites.
-        filter_value(List[str]): List of device/site ids to filter against.
+        filter_type(Literal["devices", "sites"]): The type of IDs to filter ("devices" or "sites").
+        filter_value(List[str]): List of device/site IDs to filter against.

     Returns:
-        A response dictionary object that contains a list of non-private device/site ids if any.
+        Dict[str, Union[str, List[str], bool]]: A response dictionary containing:
+            - status (str): "success" or "error"
+            - data (List[str]): List of non-private device/site IDs
+            - success (bool): True if operation was successful
+
+    Example:
+        >>> result = filter_non_private_sites_devices("devices", ["device1", "device2"])
+        >>> print(result)
+        {"status": "success", "data": ["device1"], "success": True}
     """
src/analytics/api/models/events.py (2)

44-57: Enhance constructor documentation.

While the change from tenant to network is good, the docstring could be more detailed:

     def __init__(self, network):
         """
         Initializes the EventsModel with default settings and mappings for limit thresholds,
         and specifies collections and BigQuery table references.

         Args:
-            network (str): The network identifier for managing database collections.
+            network (str): The network identifier (e.g., 'airqo') used to:
+                - Manage database collections
+                - Filter data by network
+                - Route requests to the appropriate BigQuery tables
+
+        Example:
+            >>> model = EventsModel(network="airqo")
         """

197-201: Improve SQL query formatting for better readability.

While the table reference changes are correct, the query formatting could be improved:

-            f"{pollutants_query}, {time_grouping}, {self.device_info_query}, {self.devices_table}.name AS device_name "
-            f"FROM {data_table} "
-            f"JOIN {self.devices_table} ON {self.devices_table}.device_id = {data_table}.device_id "
-            f"WHERE {data_table}.timestamp BETWEEN '{start_date}' AND '{end_date}' "
-            f"AND {self.devices_table}.device_id IN UNNEST(@filter_value) "
+            f"""
+                {pollutants_query},
+                {time_grouping},
+                {self.device_info_query},
+                {self.devices_table}.name AS device_name
+            FROM {data_table}
+            JOIN {self.devices_table}
+                ON {self.devices_table}.device_id = {data_table}.device_id
+            WHERE {data_table}.timestamp BETWEEN '{start_date}' AND '{end_date}'
+                AND {self.devices_table}.device_id IN UNNEST(@filter_value)
+            """
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1a62b08 and be197c9.

📒 Files selected for processing (4)
  • src/analytics/api/models/events.py (7 hunks)
  • src/analytics/api/utils/data_formatters.py (2 hunks)
  • src/analytics/api/views/dashboard.py (8 hunks)
  • src/analytics/api/views/data.py (3 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: Analyze (python)
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (2)
src/analytics/api/utils/data_formatters.py (1)

255-255: LGTM! Consistent variable naming.

The change from 'tenant' to 'network' aligns with the standardized terminology being used across the codebase.

src/analytics/api/models/events.py (1)

29-30: LGTM! More specific table references.

The changes to use more specific table names (BIGQUERY_SITES_SITES and BIGQUERY_DEVICES_DEVICES) improve clarity and reduce potential confusion.

Comment on lines +307 to +331
if len(filter_value) == 0:
raise ValueError(f"{filter_type} can't be empty")

endpoint: Dict = {
"devices": "devices/cohorts/filterNonPrivateDevices",
"sites": "devices/grids/filterNonPrivateSites",
}

endpoint: str = "devices/cohorts/filterNonPrivateDevices"
try:
airqo_requests = AirQoRequests()
response = airqo_requests.request(
endpoint=endpoint, body={filter_type: devices}, method="post"
endpoint=endpoint.get(filter_type),
body={filter_type: filter_value},
method="post",
)
if response and response.get("status") == "success":
return airqo_requests.create_response(
message="Successfully returned data.",
data=response.get("data"),
data=response.get("data", {}).get(filter_type, []),
success=True,
)
else:
return airqo_requests.create_response(response, success=False)
except Exception as rex:
logger.exception(f"Error while filtering non private devices {rex}")
except Exception as e:
logger.exception(f"Error while filtering non private {filter_type}: {e}")
Copy link
Contributor

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Enhance input validation and error handling.

The implementation could be more robust with additional validations and consistent error handling:

+    ALLOWED_FILTER_TYPES = {"devices", "sites"}
+
+    if filter_type not in ALLOWED_FILTER_TYPES:
+        raise ValueError(f"filter_type must be one of {ALLOWED_FILTER_TYPES}")
+
     if len(filter_value) == 0:
-        raise ValueError(f"{filter_type} can't be empty")
+        raise ValueError(f"filter_value for {filter_type} cannot be empty")

     endpoint: Dict = {
         "devices": "devices/cohorts/filterNonPrivateDevices",
         "sites": "devices/grids/filterNonPrivateSites",
     }

     try:
         airqo_requests = AirQoRequests()
         response = airqo_requests.request(
             endpoint=endpoint.get(filter_type),
             body={filter_type: filter_value},
             method="post",
         )
         if response and response.get("status") == "success":
             return airqo_requests.create_response(
                 message="Successfully returned data.",
                 data=response.get("data", {}).get(filter_type, []),
                 success=True,
             )
-        else:
-            return airqo_requests.create_response(response, success=False)
+        return airqo_requests.create_response(
+            message=f"Failed to filter {filter_type}. Server response: {response}",
+            success=False
+        )
     except Exception as e:
-        logger.exception(f"Error while filtering non private {filter_type}: {e}")
+        error_msg = f"Error while filtering non-private {filter_type}: {str(e)}"
+        logger.exception(error_msg)
+        return airqo_requests.create_response(
+            message=error_msg,
+            success=False
+        )
📝 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
if len(filter_value) == 0:
raise ValueError(f"{filter_type} can't be empty")
endpoint: Dict = {
"devices": "devices/cohorts/filterNonPrivateDevices",
"sites": "devices/grids/filterNonPrivateSites",
}
endpoint: str = "devices/cohorts/filterNonPrivateDevices"
try:
airqo_requests = AirQoRequests()
response = airqo_requests.request(
endpoint=endpoint, body={filter_type: devices}, method="post"
endpoint=endpoint.get(filter_type),
body={filter_type: filter_value},
method="post",
)
if response and response.get("status") == "success":
return airqo_requests.create_response(
message="Successfully returned data.",
data=response.get("data"),
data=response.get("data", {}).get(filter_type, []),
success=True,
)
else:
return airqo_requests.create_response(response, success=False)
except Exception as rex:
logger.exception(f"Error while filtering non private devices {rex}")
except Exception as e:
logger.exception(f"Error while filtering non private {filter_type}: {e}")
ALLOWED_FILTER_TYPES = {"devices", "sites"}
if filter_type not in ALLOWED_FILTER_TYPES:
raise ValueError(f"filter_type must be one of {ALLOWED_FILTER_TYPES}")
if len(filter_value) == 0:
raise ValueError(f"filter_value for {filter_type} cannot be empty")
endpoint: Dict = {
"devices": "devices/cohorts/filterNonPrivateDevices",
"sites": "devices/grids/filterNonPrivateSites",
}
try:
airqo_requests = AirQoRequests()
response = airqo_requests.request(
endpoint=endpoint.get(filter_type),
body={filter_type: filter_value},
method="post",
)
if response and response.get("status") == "success":
return airqo_requests.create_response(
message="Successfully returned data.",
data=response.get("data", {}).get(filter_type, []),
success=True,
)
return airqo_requests.create_response(
message=f"Failed to filter {filter_type}. Server response: {response}",
success=False
)
except Exception as e:
error_msg = f"Error while filtering non-private {filter_type}: {str(e)}"
logger.exception(error_msg)
return airqo_requests.create_response(
message=error_msg,
success=False
)

Comment on lines +392 to +394
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", {})
).get("data", [])
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix the default value for sites filter.

Using an empty dict as the default value for json_data.get("sites", {}) is incorrect as the function expects a list:

-        sites = filter_non_private_sites_devices(
-            filter_type="sites", filter_value=json_data.get("sites", {})
-        ).get("data", [])
+        sites = filter_non_private_sites_devices(
+            filter_type="sites", filter_value=json_data.get("sites", [])
+        ).get("data", [])
📝 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
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", {})
).get("data", [])
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", [])
).get("data", [])

Comment on lines +338 to +340
devices = filter_non_private_sites_devices(
filter_type="devices", filter_value=json_data.get("devices", {})
).get("data", [])
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix the default value for devices filter.

Using an empty dict as the default value for json_data.get("devices", {}) is incorrect as the function expects a list:

-        devices = filter_non_private_sites_devices(
-            filter_type="devices", filter_value=json_data.get("devices", {})
-        ).get("data", [])
+        devices = filter_non_private_sites_devices(
+            filter_type="devices", filter_value=json_data.get("devices", [])
+        ).get("data", [])
📝 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
devices = filter_non_private_sites_devices(
filter_type="devices", filter_value=json_data.get("devices", {})
).get("data", [])
devices = filter_non_private_sites_devices(
filter_type="devices", filter_value=json_data.get("devices", [])
).get("data", [])

Comment on lines +48 to +50
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", {})
).get("data", [])
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix the default value for sites filter.

Using an empty dict as the default value for json_data.get("sites", {}) is incorrect as the function expects a list:

-        sites = filter_non_private_sites_devices(
-            filter_type="sites", filter_value=json_data.get("sites", {})
-        ).get("data", [])
+        sites = filter_non_private_sites_devices(
+            filter_type="sites", filter_value=json_data.get("sites", [])
+        ).get("data", [])
📝 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
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", {})
).get("data", [])
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", [])
).get("data", [])

Comment on lines +428 to +430
devices = filter_non_private_sites_devices(
filter_type="devices", filter_value=json_data.get("devices", {})
).get("data", [])
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix the default value for devices filter.

Using an empty dict as the default value for json_data.get("devices", {}) is incorrect as the function expects a list:

-        devices = filter_non_private_sites_devices(
-            filter_type="devices", filter_value=json_data.get("devices", {})
-        ).get("data", [])
+        devices = filter_non_private_sites_devices(
+            filter_type="devices", filter_value=json_data.get("devices", [])
+        ).get("data", [])
📝 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
devices = filter_non_private_sites_devices(
filter_type="devices", filter_value=json_data.get("devices", {})
).get("data", [])
devices = filter_non_private_sites_devices(
filter_type="devices", filter_value=json_data.get("devices", [])
).get("data", [])

Comment on lines +274 to +276
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", {})
).get("data", [])
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix the default value for sites filter.

Using an empty dict as the default value for json_data.get("sites", {}) is incorrect as the function expects a list:

-        sites = filter_non_private_sites_devices(
-            filter_type="sites", filter_value=json_data.get("sites", {})
-        ).get("data", [])
+        sites = filter_non_private_sites_devices(
+            filter_type="sites", filter_value=json_data.get("sites", [])
+        ).get("data", [])
📝 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
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", {})
).get("data", [])
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", [])
).get("data", [])

Comment on lines +188 to +194
validated_value = filter_non_private_sites_devices(
filter_type, filter_value
)
elif filter_type in devices:
validated_value = filter_non_private_devices(filter_type, filter_value)
validated_value = filter_non_private_sites_devices(
filter_type, filter_value
)
Copy link
Contributor

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Add filter type validation for device registry calls.

The filter_type is passed directly from the provided_filters list without ensuring it matches the expected values ("devices" or "sites"):

+        def normalize_filter_type(filter_type: str) -> str:
+            if filter_type in sites:
+                return "sites"
+            if filter_type in devices:
+                return "devices"
+            return filter_type

         if filter_type in sites:
             validated_value = filter_non_private_sites_devices(
-                filter_type, filter_value
+                normalize_filter_type(filter_type), filter_value
             )
         elif filter_type in devices:
             validated_value = filter_non_private_sites_devices(
-                filter_type, filter_value
+                normalize_filter_type(filter_type), filter_value
             )

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 Ruff (0.8.2)

187-194: Combine if branches using logical or operator

Combine if branches

(SIM114)

Comment on lines +313 to +318
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", {})
).get("data", [])
devices = filter_non_private_sites_devices(
filter_type="devices", filter_value=json_data.get("devices", {})
).get("data", [])
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix the default values for sites and devices filters.

Using empty dicts as default values for json_data.get("sites", {}) and json_data.get("devices", {}) is incorrect as the function expects lists:

-        sites = filter_non_private_sites_devices(
-            filter_type="sites", filter_value=json_data.get("sites", {})
-        ).get("data", [])
-        devices = filter_non_private_sites_devices(
-            filter_type="devices", filter_value=json_data.get("devices", {})
-        ).get("data", [])
+        sites = filter_non_private_sites_devices(
+            filter_type="sites", filter_value=json_data.get("sites", [])
+        ).get("data", [])
+        devices = filter_non_private_sites_devices(
+            filter_type="devices", filter_value=json_data.get("devices", [])
+        ).get("data", [])
📝 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
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", {})
).get("data", [])
devices = filter_non_private_sites_devices(
filter_type="devices", filter_value=json_data.get("devices", {})
).get("data", [])
sites = filter_non_private_sites_devices(
filter_type="sites", filter_value=json_data.get("sites", [])
).get("data", [])
devices = filter_non_private_sites_devices(
filter_type="devices", filter_value=json_data.get("devices", [])
).get("data", [])

Comment on lines +244 to +250
validated_value = filter_non_private_sites_devices(
filter_type, filter_value
)
elif filter_type in devices:
validated_value = filter_non_private_devices(filter_type, filter_value)
validated_value = filter_non_private_sites_devices(
filter_type, filter_value
)
Copy link
Contributor

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Add filter type validation for device registry calls.

The filter_type is passed directly without ensuring it matches the expected values ("devices" or "sites"):

+        def normalize_filter_type(filter_type: str) -> str:
+            if filter_type in sites:
+                return "sites"
+            if filter_type in devices:
+                return "devices"
+            return filter_type

         if filter_type in sites:
             validated_value = filter_non_private_sites_devices(
-                filter_type, filter_value
+                normalize_filter_type(filter_type), filter_value
             )
         elif filter_type in devices:
             validated_value = filter_non_private_sites_devices(
-                filter_type, filter_value
+                normalize_filter_type(filter_type), filter_value
             )

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 Ruff (0.8.2)

243-250: Combine if branches using logical or operator

Combine if branches

(SIM114)

@Baalmart Baalmart merged commit 9d64b42 into airqo-platform:staging Jan 28, 2025
45 of 46 checks passed
@Baalmart Baalmart mentioned this pull request Jan 28, 2025
1 task
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants