Skip to content

Commit

Permalink
Adding no cover statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
astronomerritt committed Mar 28, 2024
1 parent 27c2588 commit 3e1b68c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/adler/dataclasses/AdlerPlanetoid.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def populate_observations(
"""

if schema:
if schema: # pragma: no cover
schema = schema + "."
else:
schema = ""
Expand Down Expand Up @@ -212,7 +212,7 @@ def populate_MPCORB(self, ssObjectId, service=None, sql_filename=None, schema="d
"""

if schema:
if schema: # pragma: no cover
schema = schema + "."
else:
schema = ""
Expand Down Expand Up @@ -256,7 +256,7 @@ def populate_SSObject(
"""

if schema:
if schema: # pragma: no cover
schema = schema + "."
else:
schema = ""
Expand Down

0 comments on commit 3e1b68c

Please sign in to comment.