Skip to content

Commit

Permalink
temporal change to test linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebits committed Jun 28, 2024
1 parent 47af0d5 commit 53a9063
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on: # yamllint disable-line rule:truthy
- synchronize
jobs:
Linting:
if: ${{ github.event.pull_request.draft }}
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-20.04
steps:
- name: Download files
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def __init__(self, dataframes_paths, store_path=gettempdir(), base_name=None, un
base_name (str, optional): Base name for saved visualizations. Defaults to None.
unify_child_daemon_metrics (bool, optional): Whether to unify child daemon metrics. Defaults to False.
"""
super().__init__(dataframes_paths, store_path, base_name)
super().__init__(testing, store_path, base_name)
self._validate_dataframe()
if unify_child_daemon_metrics:
self.dataframe = self.dataframe.reset_index(drop=False)
Expand Down

0 comments on commit 53a9063

Please sign in to comment.