<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
当我尝试上面的代码时,出现以下错误。
import bcrypt
pas_input=input("Enter password")
my_hased_password=bcrypt.hashpw(pas_input,bcrypt.gensalt(30))
print(my_hased_password)
如何解决这个问题。