Mike McQuaid 6f99704a64
Import brew formula-analytics and generate-analytics-api commands
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.
2025-02-07 20:05:05 +00:00

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