Skip to content

Commit

Permalink
Revert "fixed semgrep issues"
Browse files Browse the repository at this point in the history
This reverts commit 3062d0f.
  • Loading branch information
vguptarippling committed Apr 26, 2024
1 parent 3062d0f commit cdbbcd8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions rippling_cli/cli/commands/flux/flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def flux(ctx: click.Context):
ensure_logged_in(ctx)


flux.add_command(app) # type: ignore[attr-defined]
flux.add_command(build) # type: ignore[attr-defined]
flux.add_command(check) # type: ignore[attr-defined]
flux.add_command(install) # type: ignore[attr-defined]
flux.add_command(uninstall) # type: ignore[attr-defined]
flux.add_command(app) # type: ignore
flux.add_command(build) # type: ignore
flux.add_command(check) # type: ignore
flux.add_command(install) # type: ignore
flux.add_command(uninstall) # type: ignore
2 changes: 1 addition & 1 deletion rippling_cli/core/api_client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from http import client

import requests # type: ignore[attr-defined]
import requests # type: ignore


class APIClient:
Expand Down
2 changes: 1 addition & 1 deletion rippling_cli/core/oauth_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from urllib.parse import parse_qs

import click
import requests # type: ignore[attr-defined]
import requests # type: ignore

from rippling_cli.config.config import get_oauth_token_data
from rippling_cli.constants import RIPPLING_API, RIPPLING_BASE_URL
Expand Down
2 changes: 1 addition & 1 deletion rippling_cli/utils/file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Optional

import click
import requests # type: ignore[attr-defined]
import requests # type: ignore

from rippling_cli.exceptions.build_exceptions import DirectoryCreationFailed

Expand Down

0 comments on commit cdbbcd8

Please sign in to comment.