Skip to content

Commit

Permalink
Add post_location function to scilog (#270)
Browse files Browse the repository at this point in the history
* Add post_location function to scilog

* Remove extra line

* Fix linting
  • Loading branch information
minottic authored Jul 10, 2023
1 parent cec1e40 commit ea0d4cb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sdk/python/scilog/scilog.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,10 @@ def get_logbooks(
def post_snippet(self, **kwargs):
return self.core.post_snippet(**kwargs)

# TODO: review and potentially move the whole core logic here
def post_location(self, **kwargs):
return self.core.post_location(**kwargs)


class SciLogAuthError(AuthError):
pass

0 comments on commit ea0d4cb

Please sign in to comment.