Skip to content

Commit

Permalink
build: Update coverage
Browse files Browse the repository at this point in the history
Signed-off-by: William José Moreno Reyes <williamjmorenor@gmail.com>
  • Loading branch information
williamjmorenor committed Mar 4, 2024
1 parent fbf52ec commit 1797768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions now_lms/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def concatenar_parametros_a_url(

argumentos: str = char

if parametros:
if parametros: # pragma: no cover
if arg and val:
parametros[arg] = val

Expand All @@ -56,7 +56,7 @@ def concatenar_parametros_a_url(
elif arg and val:
argumentos = argumentos + "&" + arg + "=" + val

if char is not None and argumentos.find("&") == 1:
if char is not None and argumentos.find("&") == 1: # pragma: no cover
argumentos = char + argumentos[2:]

return argumentos
Expand Down

0 comments on commit 1797768

Please sign in to comment.