
Import these from the homebrew/formula-analytics tap and deprecate that tap. This required a little messing around with filenames and paths to get it finding Python and writing to the user's home directory.
25 lines
456 B
Ruby
25 lines
456 B
Ruby
# typed: strict
|
|
|
|
class InfluxDBClient3
|
|
def self.initialize(*args); end
|
|
|
|
def query(*args); end
|
|
end
|
|
|
|
module PyCall
|
|
def self.init(*args); end
|
|
|
|
module Import
|
|
def self.pyfrom(*args); end
|
|
|
|
def self.import(*args); end
|
|
end
|
|
|
|
PyError = Class.new(StandardError).freeze
|
|
end
|
|
|
|
# Needs defined here for Sorbet to work as expected.
|
|
# rubocop:disable Style/TopLevelMethodDefinition
|
|
def pyfrom(*args); end
|
|
# rubocop:enable Style/TopLevelMethodDefinition
|