mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

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.
13 lines
352 B
Ruby
13 lines
352 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "pycall/import"
|
|
# This was a rewrite from `include(Module.new(...))`,
|
|
# to appease Sorbet, so let's keep the existing behaviour
|
|
# and silence RuboCop.
|
|
# rubocop:disable Style/MixinUsage
|
|
include PyCall::Import
|
|
# rubocop:enable Style/MixinUsage
|
|
|
|
pyfrom "influxdb_client_3", import: :InfluxDBClient3
|