Transfer of pascal to millimeters of mercury

I can not translate the pressure from pascal to millimeters of mercury, please help.

#include "Seeed_BME280.h"
#include <Wire.h> 
BME280 bme280;

void setup()
{
  Serial.begin(9600);
  if(!bme280.init()){
    Serial.println("Device error!");
  }
}

void loop()
{
  float pressure;
  pressure = ((bme280.getPressure) / 133.3224);
  
  //get and print temperatures
  Serial.print("Temp: ");
  Serial.print(bme280.getTemperature());
  Serial.println("C");//The unit for  Celsius because original arduino don't support speical symbols
  
  //get and print atmospheric pressure data
  Serial.print("Pressure: ");
  Serial.print(pressure);
  Serial.println("Pa");

  //get and print altitude data
  Serial.print("Altitude: ");
  Serial.print(bme280.calcAltitude(pressure));
  Serial.println("m");
 
  //get and print humidity data
  Serial.print("Humidity: ");
  Serial.print(bme280.getHumidity());
  Serial.println("%");
  Serial.println("  ");

  delay(5000);
}

Error in line

pressure = ((bme280.getPressure) / 133.3224);

"getPressure" is a function. In C language, a function must always be followed by (), even if the function takes no parameters. Look at how getTemperature and getHumidity are called.

PaulRB:
"getPressure" is a function. In C language, a function must always be followed by (), even if the function takes no parameters. Look at how getTemperature and getHumidity are called.

Where can I look?

In the code you posted.